1 | # Make sure the compiler can find include files from our Bdm library. |
---|
2 | include_directories (${BDM_SOURCE_DIR}/bdm) |
---|
3 | |
---|
4 | # Make sure the linker can find the Hello library once it is built. |
---|
5 | link_directories (${BDM_BINARY_DIR}/bdm) |
---|
6 | |
---|
7 | ## Save all needed libraries in variable BdmLibs |
---|
8 | #SET(BdmLibs bdm itpp_debug) |
---|
9 | SET(BdmLibs bdm itpp) |
---|
10 | |
---|
11 | IF(WIN32) |
---|
12 | SET(BdmLibs ${BdmLibs} libacml_dll) |
---|
13 | ENDIF(WIN32) |
---|
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 | add_executable (chmat_test chmat_test.cpp) |
---|
18 | target_link_libraries (chmat_test ${BdmLibs}) |
---|
19 | |
---|
20 | add_executable (ldmat_test ldmat_test.cpp) |
---|
21 | target_link_libraries (ldmat_test ${BdmLibs}) |
---|
22 | |
---|
23 | add_executable (fsqmat_test fsqmat_test.cpp) |
---|
24 | target_link_libraries (fsqmat_test ${BdmLibs}) |
---|
25 | |
---|
26 | add_executable (arx_test arx_test.cpp) |
---|
27 | target_link_libraries (arx_test ${BdmLibs}) |
---|
28 | |
---|
29 | add_executable (loggers_test loggers_test.cpp) |
---|
30 | target_link_libraries (loggers_test ${BdmLibs}) |
---|
31 | |
---|
32 | add_executable (test0 test0.cpp) |
---|
33 | add_executable (testKF testKF.cpp) |
---|
34 | add_executable (testPF testPF.cpp) |
---|
35 | add_executable (testSmp testSmp.cpp) |
---|
36 | add_executable (testEpdf testEpdf.cpp) |
---|
37 | add_executable (testResample testResample.cpp) |
---|
38 | add_executable (testKF_QR testKF_QR.cpp) |
---|
39 | add_executable (testKF_QRexh testKF_QRexh.cpp) |
---|
40 | add_executable (testUI testUI.cpp) |
---|
41 | |
---|
42 | |
---|
43 | # Link the executable to the Hello library. |
---|
44 | target_link_libraries (test0 ${BdmLibs}) |
---|
45 | target_link_libraries (testKF ${BdmLibs}) |
---|
46 | target_link_libraries (testPF ${BdmLibs}) |
---|
47 | target_link_libraries (testSmp ${BdmLibs}) |
---|
48 | target_link_libraries (testEpdf ${BdmLibs}) |
---|
49 | target_link_libraries (testResample ${BdmLibs}) |
---|
50 | target_link_libraries (testKF_QR ${BdmLibs}) |
---|
51 | target_link_libraries (testKF_QRexh ${BdmLibs}) |
---|
52 | target_link_libraries (testUI ${BdmLibs}) |
---|