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

@ -4,7 +4,13 @@ include_directories(../../../Plasma/CoreLib)
include_directories(../../../Plasma/NucleusLib)
include_directories(../../../Plasma/PubUtilLib)
add_executable(test_plUnifiedTime test_plUnifiedTime.cpp)
set(plUnifiedTimeTest_SOURCES
test_plUnifiedTime.cpp
)
add_executable(test_plUnifiedTime ${plUnifiedTimeTest_SOURCES})
target_link_libraries(test_plUnifiedTime gtest gtest_main)
target_link_libraries(test_plUnifiedTime plUnifiedTime)
add_test(NAME test_plUnifiedTime COMMAND test_plUnifiedTime)
add_dependencies(check test_plUnifiedTime)