pacman/pomodoro/test/CMakeLists.txt

10 lines
280 B
Text
Raw Normal View History

2020-11-28 17:00:10 +00:00
enable_testing()
find_package(GTest REQUIRED)
include(GoogleTest)
add_executable(pomodoro_tests tests.cpp)
target_link_libraries(pomodoro_tests GTest::GTest libpomodoro)
gtest_discover_tests(pomodoro_tests TEST_PREFIX pomodoro:)
add_test(NAME monolithic COMMAND pomodoro_tests)