pacman/pacman/test/CMakeLists.txt

10 lines
240 B
CMake
Raw Normal View History

2020-11-27 16:48:38 +00:00
enable_testing()
find_package(GTest REQUIRED)
include(GoogleTest)
add_executable(tests tests.cpp)
2020-11-27 17:21:19 +00:00
target_link_libraries(tests GTest::GTest libpacman)
2020-11-27 16:48:38 +00:00
2020-11-27 17:21:19 +00:00
gtest_discover_tests(tests TEST_PREFIX pacman:)
2020-11-27 16:48:38 +00:00
add_test(NAME monolithic COMMAND tests)