Files
backup/tests/clitests/CMakeLists.txt
Stepan Usatiuk 5ea76e566e
All checks were successful
CMake / build (push) Successful in 24m18s
add discovery timeout to gtests
2024-01-05 22:53:18 +01:00

16 lines
281 B
CMake

cmake_minimum_required(VERSION 3.18)
add_executable(
CLITests
srcs/CLITestWrapper.cpp
)
add_dependencies(CLITests backup)
target_link_libraries(
CLITests PRIVATE
GTest::gtest_main testUtils
)
gtest_discover_tests(CLITests DISCOVERY_TIMEOUT 600)