Files
kami/test/CMakeLists.txt
2022-08-18 18:17:47 -04:00

19 lines
707 B
CMake

################################################################################
# This CMakeLists.txt contains the build descriptions for unit tests
################################################################################
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED)
file(GLOB test_modules "${CMAKE_CURRENT_SOURCE_DIR}/*.cc")
FOREACH (test_module ${test_modules})
cmake_path(GET test_module STEM test_src)
create_test(
NAME ${test_src}
SOURCES ${test_src}.cc
PUBLIC_LINKED_TARGETS gmock gtest kami::libkami Threads::Threads
COMMAND ${test_src}
PUBLIC_COMPILE_FEATURES ${COVERAGE_FLAGS}
)
ENDFOREACH ()