9 lines
170 B
CMake
9 lines
170 B
CMake
|
|
add_executable(testUtils main.cpp)
|
|
|
|
message(${GTEST_LIBS})
|
|
|
|
link_libraries(testUtils utils debugTools ${GTEST_LIBS})
|
|
|
|
add_test(Name testUtils
|
|
COMMAND testUtils) |