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
390 B
17 lines
390 B
12 years ago
|
project(CoreLibTests)
|
||
|
|
||
|
enable_testing()
|
||
|
include_directories(${GTEST_INCLUDE_DIR})
|
||
|
include_directories(${gtest_SOURCE_DIR}/include ${gtest_SOURCE_DIR})
|
||
|
include_directories(../../Plasma/CoreLib)
|
||
|
SET(TEST_PLSTRING
|
||
|
PlStringTest.cpp)
|
||
|
|
||
|
add_executable(plStringTest ${TEST_PLSTRING})
|
||
|
|
||
|
target_link_libraries(plStringTest gtest gtest_main CoreLib)
|
||
|
|
||
|
add_test(
|
||
|
NAME plStringTest
|
||
|
COMMAND plStringTest
|
||
|
)
|