1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 11:19:10 +00:00

make check working, 1 test app per library

This commit is contained in:
Darryl Pogue
2014-01-13 22:50:30 -08:00
committed by Anne Marije v/d Meer
parent d6cb56fd9c
commit e2887eb075
8 changed files with 47 additions and 37 deletions

View File

@ -5,15 +5,20 @@ include_directories(../../../Plasma/NucleusLib)
include_directories(../../../Plasma/PubUtilLib)
include_directories(../../../Plasma/FeatureLib)
add_executable(test_cyMisc test_cyMisc.cpp)
target_link_libraries(test_cyMisc gtest gtest_main)
target_link_libraries(test_cyMisc pfPython)
set(pfPythonTest_SOURCES
test_cyMisc.cpp
)
add_executable(test_pfPython ${pfPythonTest_SOURCES})
target_link_libraries(test_pfPython gtest gtest_main)
target_link_libraries(test_pfPython pfPython)
if(PYTHON_DEBUG_LIBRARY)
target_link_libraries(test_cyMisc debug ${PYTHON_DEBUG_LIBRARY})
target_link_libraries(test_cyMisc optimized ${PYTHON_LIBRARY})
target_link_libraries(test_pfPython debug ${PYTHON_DEBUG_LIBRARY})
target_link_libraries(test_pfPython optimized ${PYTHON_LIBRARY})
else()
target_link_libraries(test_cyMisc ${PYTHON_LIBRARY})
target_link_libraries(test_pfPython ${PYTHON_LIBRARY})
endif()
add_test(NAME test_cyMisc COMMAND test_cyMisc)
add_test(NAME test_pfPython COMMAND test_pfPython)
add_dependencies(check test_pfPython)