- Timestamp:
- 01/23/09 15:33:11 (16 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
tests/CMakeLists.txt
r235 r247 4 4 # Make sure the linker can find the Hello library once it is built. 5 5 link_directories (${BDM_BINARY_DIR}/bdm) 6 7 # Define macro for testing a file 8 MACRO(TEST FN) 9 add_executable (${FN} ${FN}.cpp) 10 target_link_libraries (${FN} debug itpp_debug) 11 target_link_libraries (${FN} optimized itpp) 12 target_link_libraries (${FN} bdm ${AddLib}) 13 ENDMACRO(TEST) 6 14 7 15 # Add executable called "helloDemo" that is built from the source files … … 40 48 41 49 IF(${XERCES_FOUND}) 42 EXEC(testUI)43 target_link_libraries (testUI ${XERCES_LIBRARIES})50 EXEC(testUI) 51 target_link_libraries (testUI ${XERCES_LIBRARIES}) 44 52 ENDIF(${XERCES_FOUND})