mirror of
https://github.com/JHUAPL/kami.git
synced 2026-01-09 23:07:56 -05:00
19 lines
707 B
CMake
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 ()
|