Files
backup/tests/clitests/CMakeLists.txt
Stepan Usatiuk 8f63891aee
Some checks failed
CMake / build (push) Has been cancelled
set cmake min for 3.18
for gitea actions runner
2023-11-26 13:49:34 +01:00

16 lines
259 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)