nix-config/templates/c++-cmake/tests/unit/CMakeLists.txt

16 lines
296 B
CMake
Raw Normal View History

2023-04-04 17:48:04 +02:00
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})