xo-umbrella2/xo-process/utest/CMakeLists.txt
Roland Conybeare 2450ab4ed9 Add 'xo-process/' from commit '7cfc560f02'
git-subtree-dir: xo-process
git-subtree-mainline: abd08e3491
git-subtree-split: 7cfc560f02
2025-05-11 16:10:34 -05:00

16 lines
429 B
CMake

# build unittest 'process/unittest'
# These tests can use the Catch2-provided main
set(SELF_EXE utest.process)
set(SELF_SRCS
ProcessReflect.test.cpp
RealizationSource.test.cpp
process_utest_main.cpp)
xo_add_utest_executable(${SELF_EXE} ${SELF_SRCS})
xo_self_dependency(${SELF_EXE} process)
xo_dependency(${SELF_EXE} simulator)
xo_external_target_dependency(${SELF_EXE} Catch2 Catch2::Catch2)
# end CMakeLists.txt