
add_executable(square_mat_stress square_mat_stress.cpp)
target_link_libraries(square_mat_stress testutil unittest)
LINK_EXEC(square_mat_stress)

add_executable(square_mat_prep additive_generator.cpp additive_generator.h generator.cpp generator.h 
	size_generator.cpp size_generator.h square_mat_prep.cpp)
target_link_libraries(square_mat_prep testutil)
LINK_EXEC(square_mat_prep)


# using UnitTest++

add_executable(stresssuite stresssuite.cpp resample_stress.cpp arx_stress.cpp arx_elem_stress.cpp merger_2d_stress.cpp merger_iter_stress.cpp mixtures_stress.cpp kalman_stress.cpp particle_stress.cpp 
#kalman_QR_stress.cpp kalman_QRexh_stress.cpp 
blas_stress.cpp )

target_link_libraries(stresssuite testutil unittest)
LINK_EXEC(stresssuite)


