164db664ef
* Remove non-pacman exercises. * Use vcpkg instead of conan ( make vcpkg a submodule) * Merge the readmem these will need to be improve later
10 lines
269 B
CMake
10 lines
269 B
CMake
enable_testing()
|
|
find_package(GTest REQUIRED)
|
|
|
|
include(GoogleTest)
|
|
|
|
add_executable(pacman_tests tests.cpp)
|
|
target_link_libraries(pacman_tests GTest::GTest libpacman)
|
|
|
|
gtest_discover_tests(pacman_tests TEST_PREFIX pacman:)
|
|
add_test(NAME monolithic COMMAND pacman_tests)
|