git-subtree-dir: xo-process git-subtree-mainline:abd08e3491git-subtree-split:7cfc560f02
16 lines
429 B
CMake
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
|