pacman/test/CMakeLists.txt

13 lines
306 B
CMake
Raw Normal View History

2020-11-27 16:48:38 +00:00
enable_testing()
find_package(GTest REQUIRED)
include(GoogleTest)
file(GLOB_RECURSE sources CONFIGURE_DEPENDS "*.cpp")
add_executable(pacman_tests ${sources})
2020-11-28 17:00:10 +00:00
target_link_libraries(pacman_tests GTest::GTest libpacman)
2021-09-10 13:55:42 +00:00
add_test(NAME pacman_tests COMMAND pacman_tests)
2020-11-27 16:48:38 +00:00
2021-09-10 13:55:42 +00:00
gtest_discover_tests(pacman_tests)