16 lines
296 B
CMake
16 lines
296 B
CMake
|
find_package(GTest)
|
||
|
|
||
|
if (${GTest_FOUND})
|
||
|
include(GoogleTest)
|
||
|
|
||
|
add_executable(dummy_test dummy_test.cc)
|
||
|
target_link_libraries(dummy_test PRIVATE common_options)
|
||
|
|
||
|
target_link_libraries(dummy_test PRIVATE
|
||
|
GTest::gtest
|
||
|
GTest::gtest_main
|
||
|
)
|
||
|
|
||
|
gtest_discover_tests(dummy_test)
|
||
|
endif (${GTest_FOUND})
|