root/tests/CMakeLists.txt @ 248

Revision 247, 1.1 kB (checked in by smidl, 15 years ago)

cmake fixes for opensuse

  • Property svn:eol-style set to native
Line 
1# Make sure the compiler can find include files from our Bdm library.
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
7# Define macro for testing a file
8MACRO(TEST FN)
9        add_executable (${FN} ${FN}.cpp)
10        target_link_libraries (${FN} debug itpp_debug)
11        target_link_libraries (${FN} optimized itpp)
12        target_link_libraries (${FN} bdm ${AddLib})
13ENDMACRO(TEST)
14
15# Add executable called "helloDemo" that is built from the source files
16# "demo.cxx" and "demo_b.cxx".  The extensions are automatically found.
17
18# BASIC EXECS
19EXEC(rv_test)
20EXEC(datalink_test)
21EXEC(loggers_test)
22
23EXEC(chmat_test)
24EXEC(ldmat_test)
25EXEC(fsqmat_test)
26EXEC(enorm_test)
27EXEC(egiw_test)
28EXEC(emix_test)
29EXEC(test0)
30EXEC(testResample)
31
32# ESTIM EXECS
33EXEC(arx_test)
34EXEC(arx_elem_test)
35EXEC(merger_test)
36EXEC(merger_2d_test)
37EXEC(merger_iter_test)
38EXEC(mixef_test)
39
40EXEC(testKF)
41EXEC(testPF)
42EXEC(testSmp)
43EXEC(testEpdf)
44EXEC(testKF_QR)
45EXEC(testKF_QRexh)
46
47EXEC(blas_test)
48
49IF(${XERCES_FOUND})
50  EXEC(testUI)
51  target_link_libraries (testUI ${XERCES_LIBRARIES})
52ENDIF(${XERCES_FOUND})
Note: See TracBrowser for help on using the browser.