root/tests/CMakeLists.txt @ 143

Revision 143, 1.8 kB (checked in by mido, 16 years ago)

odmazani par zbytku po XSD, znovuzapojeni Xercese, stale nelze zbuildovat blas_test, testUI vsak jiz zbuilduju

  • 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
[33]8#SET(BdmLibs bdm itpp_debug)
9SET(BdmLibs bdm itpp)
[20]10
11IF(WIN32)
[35]12        SET(BdmLibs ${BdmLibs} libacml_dll)
[20]13ENDIF(WIN32)
14
[19]15# Add executable called "helloDemo" that is built from the source files
16# "demo.cxx" and "demo_b.cxx".  The extensions are automatically found.
[82]17add_executable (chmat_test chmat_test.cpp)
18target_link_libraries (chmat_test ${BdmLibs})
19
20add_executable (ldmat_test ldmat_test.cpp)
21target_link_libraries (ldmat_test ${BdmLibs})
22
[87]23add_executable (fsqmat_test fsqmat_test.cpp)
24target_link_libraries (fsqmat_test ${BdmLibs})
[82]25
[100]26add_executable (arx_test arx_test.cpp)
27target_link_libraries (arx_test ${BdmLibs})
[87]28
29add_executable (loggers_test loggers_test.cpp)
30target_link_libraries (loggers_test ${BdmLibs})
31
[125]32add_executable (blas_test blas_test.cpp)
[129]33target_link_libraries (blas_test itpp)
[125]34
[19]35add_executable (test0 test0.cpp)
36add_executable (testKF testKF.cpp)
37add_executable (testPF testPF.cpp)
[22]38add_executable (testSmp testSmp.cpp)
[32]39add_executable (testEpdf testEpdf.cpp)
40add_executable (testResample testResample.cpp)
41add_executable (testKF_QR testKF_QR.cpp)
[33]42add_executable (testKF_QRexh testKF_QRexh.cpp)
[143]43add_executable (testUI testUI.cpp)
[19]44
[42]45
[19]46# Link the executable to the Hello library.
[20]47target_link_libraries (test0 ${BdmLibs})
48target_link_libraries (testKF ${BdmLibs})
49target_link_libraries (testPF ${BdmLibs})
[22]50target_link_libraries (testSmp ${BdmLibs})
[32]51target_link_libraries (testEpdf ${BdmLibs})
52target_link_libraries (testResample ${BdmLibs})
53target_link_libraries (testKF_QR ${BdmLibs})
[33]54target_link_libraries (testKF_QRexh ${BdmLibs})
[143]55target_link_libraries (testUI ${BdmLibs} ${XERCES_LIBRARIES})
Note: See TracBrowser for help on using the browser.