Changeset 144 for tests

Show
Ignore:
Timestamp:
08/20/08 14:08:53 (16 years ago)
Author:
smidl
Message:

oprava linkovani test_blas na win32

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • tests/CMakeLists.txt

    r143 r144  
    88#SET(BdmLibs bdm itpp_debug) 
    99SET(BdmLibs bdm itpp) 
     10SET(ITppLibs itpp) 
    1011 
    1112IF(WIN32) 
    1213        SET(BdmLibs ${BdmLibs} libacml_dll) 
     14        SET(ITppLibs ${ITppLibs} libacml_dll) 
    1315ENDIF(WIN32) 
    1416 
     
    3133 
    3234add_executable (blas_test blas_test.cpp) 
    33 target_link_libraries (blas_test itpp) 
     35target_link_libraries (blas_test ${ITppLibs}) 
    3436 
    3537add_executable (test0 test0.cpp) 
     
    5456target_link_libraries (testKF_QRexh ${BdmLibs}) 
    5557target_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