root/tests/CMakeLists.txt @ 319

Revision 271, 0.9 kB (checked in by smidl, 15 years ago)

Next major revision

  • 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# Add executable called "helloDemo" that is built from the source files
8# "demo.cxx" and "demo_b.cxx".  The extensions are automatically found.
9
10# BASIC EXECS
11EXEC(rv_test)
12EXEC(datalink_test)
13EXEC(loggers_test)
14
15EXEC(chmat_test)
16EXEC(ldmat_test)
17EXEC(fsqmat_test)
18EXEC(enorm_test)
19EXEC(egiw_test)
20EXEC(emix_test)
21EXEC(test0)
22EXEC(testResample)
23
24# ESTIM EXECS
25EXEC(arx_test)
26EXEC(arx_elem_test)
27EXEC(merger_test)
28EXEC(merger_2d_test)
29EXEC(merger_iter_test)
30EXEC(mixef_test)
31
32EXEC(testKF)
33EXEC(testPF)
34EXEC(testSmp)
35EXEC(testEpdf)
36EXEC(testKF_QR)
37EXEC(testKF_QRexh)
38
39EXEC(blas_test)
40
41IF(${XERCES_FOUND})
42  EXEC(testUI)
43  target_link_libraries (testUI ${XERCES_LIBRARIES})
44ENDIF(${XERCES_FOUND})
45
46add_subdirectory(UI)
47add_subdirectory(tutorial)
Note: See TracBrowser for help on using the browser.