# Make sure the compiler can find include files from our Bdm library.
include_directories (${BDM_SOURCE_DIR}/bdm)
include_directories (./unittest-cpp)

# Make sure the linker can find the Hello library once it is built.
link_directories (${BDM_BINARY_DIR}/bdm)
link_directories (./unittest-cpp)

# Add executable called "helloDemo" that is built from the source files
# "demo.cxx" and "demo_b.cxx".  The extensions are automatically found.

EXEC(chmat_test)
EXEC(ldmat_test)
EXEC(fsqmat_test)
EXEC(enorm_test)
EXEC(egiw_test)
EXEC(emix_test)
EXEC(test0)
EXEC(testResample)

# ESTIM EXECS
EXEC(arx_test)
EXEC(arx_elem_test)
EXEC(merger_test)
EXEC(merger_2d_test)
EXEC(merger_iter_test)
EXEC(mixtures_test)

EXEC(test_kalman)
EXEC(test_particle)
EXEC(testSmp)
EXEC(testEpdf)
EXEC(test_kalman_QR)
EXEC(test_kalman_QRexh)

EXEC(blas_test)

# using UnitTest++
add_executable(testsuite datalink_test.cpp loggers_test.cpp rv_test.cpp testsuite.cpp test_user_info.cpp test_util.cpp test_util.h test_shared_ptr.cpp)
target_link_libraries(testsuite bdm itpp unittest)

add_subdirectory(tutorial)
add_subdirectory(unittest-cpp)
