Changeset 144
- Timestamp:
- 08/20/08 14:08:53 (16 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
tests/CMakeLists.txt
r143 r144 8 8 #SET(BdmLibs bdm itpp_debug) 9 9 SET(BdmLibs bdm itpp) 10 SET(ITppLibs itpp) 10 11 11 12 IF(WIN32) 12 13 SET(BdmLibs ${BdmLibs} libacml_dll) 14 SET(ITppLibs ${ITppLibs} libacml_dll) 13 15 ENDIF(WIN32) 14 16 … … 31 33 32 34 add_executable (blas_test blas_test.cpp) 33 target_link_libraries (blas_test itpp)35 target_link_libraries (blas_test ${ITppLibs}) 34 36 35 37 add_executable (test0 test0.cpp) … … 54 56 target_link_libraries (testKF_QRexh ${BdmLibs}) 55 57 target_link_libraries (testUI ${BdmLibs} ${XERCES_LIBRARIES}) 58 59 60 # experimental lines building an XSD's hello example 61 62 # add_executable (test_xsd_hello test_xsd_hello.cxx hello-pskel.hxx hello-pskel.cxx) 63 # target_link_libraries (test_xsd_hello ${BdmLibs} ${XERCES_LIBRARIES} ) 64 # SET(XSD_ARGS "cxx-parser") 65 # ADD_CUSTOM_COMMAND( 66 # OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/hello-pskel.hxx ${CMAKE_CURRENT_BINARY_DIR}/hello-pskel.cxx 67 # COMMAND ${XSD_EXECUTABLE} 68 # ARGS ${XSD_ARGS} ${CMAKE_CURRENT_SOURCE_DIR}/hello.xsd 69 # MAIN_DEPENDENCY ${CMAKE_CURRENT_SOURCE_DIR}/hello.xsd 70 # ) 71 # 72