root/tests/CMakeLists.txt @ 201

Revision 201, 1.3 kB (checked in by smidl, 16 years ago)

oprava ARX a prejmenovani sampleN na sample_m

  • Property svn:eol-style set to native
RevLine 
[20]1# Make sure the compiler can find include files from our Bdm library.
[19]2include_directories (${BDM_SOURCE_DIR}/bdm)
3
4# Make sure the linker can find the Hello library once it is built.
5link_directories (${BDM_BINARY_DIR}/bdm)
6
[20]7## Save all needed libraries in variable BdmLibs
[169]8SET(BdmLibs bdm itpp_debug)
9#SET(BdmLibs bdm itpp)
[144]10SET(ITppLibs itpp)
[20]11
12IF(WIN32)
[35]13        SET(BdmLibs ${BdmLibs} libacml_dll)
[144]14        SET(ITppLibs ${ITppLibs} libacml_dll)
[20]15ENDIF(WIN32)
16
[166]17# Define macro for testing a file
18MACRO(TEST FN)
19        add_executable (${FN} ${FN}.cpp)
20        target_link_libraries (${FN} ${BdmLibs})
21ENDMACRO(TEST)
22
[19]23# Add executable called "helloDemo" that is built from the source files
24# "demo.cxx" and "demo_b.cxx".  The extensions are automatically found.
[182]25
26# BASIC TESTS
27TEST(rv_test)
[190]28TEST(datalink_test)
[182]29TEST(loggers_test)
30
[166]31TEST(chmat_test)
32TEST(ldmat_test)
33TEST(fsqmat_test)
[182]34TEST(enorm_test)
35TEST(egiw_test)
[193]36TEST(emix_test)
[182]37TEST(test0)
38TEST(testResample)
39
40# ESTIM TESTS
[166]41TEST(arx_test)
[201]42TEST(arx_elem_test)
[166]43TEST(merger_test)
[182]44TEST(merger_iter_test)
[166]45TEST(mixef_test)
[182]46
[166]47TEST(testKF)
48TEST(testPF)
49TEST(testSmp)
50TEST(testEpdf)
51TEST(testKF_QR)
52TEST(testKF_QRexh)
[82]53
[166]54add_executable(blas_test blas_test.cpp)
[144]55target_link_libraries (blas_test ${ITppLibs})
[125]56
[166]57add_executable(testUI testUI.cpp)
[143]58target_link_libraries (testUI ${BdmLibs} ${XERCES_LIBRARIES})
Note: See TracBrowser for help on using the browser.