11 lines
205 B
CMake
11 lines
205 B
CMake
|
|
file(GLOB testSrc *.cpp)
|
|
|
|
add_executable(testUtils ${testSrc})
|
|
|
|
message(${GTEST_LIBS})
|
|
|
|
target_link_libraries(testUtils utils debugTools ${GTEST_LIBS})
|
|
|
|
add_test(Name testUtils
|
|
COMMAND testUtils) |