You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
498 B
17 lines
498 B
10 years ago
|
include_directories(${GTEST_INCLUDE_DIR})
|
||
|
include_directories(${gtest_SOURCE_DIR}/include ${gtest_SOURCE_DIR})
|
||
|
include_directories(../../../Plasma/CoreLib)
|
||
|
include_directories(../../../Plasma/NucleusLib)
|
||
|
|
||
|
set(pnUtilsTest_SOURCES
|
||
|
test_plCmdParser.cpp
|
||
|
)
|
||
|
|
||
|
add_executable(test_pnUtils ${pnUtilsTest_SOURCES})
|
||
|
target_link_libraries(test_pnUtils gtest gtest_main)
|
||
|
target_link_libraries(test_pnUtils pnUtils)
|
||
|
|
||
|
add_test(NAME test_pnUtils COMMAND test_pnUtils)
|
||
|
add_dependencies(check test_pnUtils)
|
||
|
|