ConceptCore/ccl/cclCommons/test/CMakeLists.txt

24 lines
450 B
CMake
Raw Normal View History

2024-04-15 22:16:14 +03:00
cmake_minimum_required(VERSION 3.23)
find_package(GTest REQUIRED)
add_executable(cclCommons_Tests)
target_sources(cclCommons_Tests
PRIVATE
unity/cclCommonsTest.cpp
)
target_include_directories(cclCommons_Tests
PRIVATE
../include
utils
)
target_link_libraries(cclCommons_Tests
PRIVATE
ccl_CXXwarnings
ccl_CXXoptions
GTest::gtest
GTest::gtest_main
)
include(GoogleTest)
gtest_discover_tests(cclCommons_Tests)