Revision 182, 1.2 kB
(checked in by smidl, 16 years ago)
|
compilation error!
|
-
Property svn:eol-style set to
native
|
Line | |
---|
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 | SET(ITppLibs itpp) |
---|
11 | |
---|
12 | IF(WIN32) |
---|
13 | SET(BdmLibs ${BdmLibs} libacml_dll) |
---|
14 | SET(ITppLibs ${ITppLibs} libacml_dll) |
---|
15 | ENDIF(WIN32) |
---|
16 | |
---|
17 | # Define macro for testing a file |
---|
18 | MACRO(TEST FN) |
---|
19 | add_executable (${FN} ${FN}.cpp) |
---|
20 | target_link_libraries (${FN} ${BdmLibs}) |
---|
21 | ENDMACRO(TEST) |
---|
22 | |
---|
23 | # Add executable called "helloDemo" that is built from the source files |
---|
24 | # "demo.cxx" and "demo_b.cxx". The extensions are automatically found. |
---|
25 | |
---|
26 | # BASIC TESTS |
---|
27 | TEST(rv_test) |
---|
28 | TEST(loggers_test) |
---|
29 | |
---|
30 | TEST(chmat_test) |
---|
31 | TEST(ldmat_test) |
---|
32 | TEST(fsqmat_test) |
---|
33 | TEST(enorm_test) |
---|
34 | TEST(egiw_test) |
---|
35 | TEST(test0) |
---|
36 | TEST(testResample) |
---|
37 | |
---|
38 | # ESTIM TESTS |
---|
39 | TEST(arx_test) |
---|
40 | TEST(merger_test) |
---|
41 | TEST(merger_iter_test) |
---|
42 | TEST(mixef_test) |
---|
43 | |
---|
44 | TEST(testKF) |
---|
45 | TEST(testPF) |
---|
46 | TEST(testSmp) |
---|
47 | TEST(testEpdf) |
---|
48 | TEST(testKF_QR) |
---|
49 | TEST(testKF_QRexh) |
---|
50 | |
---|
51 | add_executable(blas_test blas_test.cpp) |
---|
52 | target_link_libraries (blas_test ${ITppLibs}) |
---|
53 | |
---|
54 | add_executable(testUI testUI.cpp) |
---|
55 | target_link_libraries (testUI ${BdmLibs} ${XERCES_LIBRARIES}) |
---|