xo-umbrella2/xo-webutil/utest/CMakeLists.txt
Roland Conybeare db563d8d42
Some checks failed
cmake-docker / cmake-build (clang, clang++) (push) Failing after 18m35s
CI / smoke-test (push) Has been cancelled
cmake-docker / cmake-build (gcc, g++) (push) Has been cancelled
xo-webutil: use xo-ppsink !xo-indentlog [REFACTOR]
2026-08-07 00:39:19 -04:00

17 lines
451 B
CMake

# xo-webutil/utest/CMakeLists.txt
set(SELF_EXE utest.webutil)
set(SELF_SRCS
webutil_utest_main.cpp
EndpointDescr.test.cpp)
if (ENABLE_TESTING)
xo_add_utest_executable(${SELF_EXE} ${SELF_SRCS})
xo_self_dependency(${SELF_EXE} webutil)
# for xo::pp::{FlatSink,tostr} in the tests themselves
xo_dependency(${SELF_EXE} xo_ppsink)
xo_external_target_dependency(${SELF_EXE} Catch2 Catch2::Catch2)
endif()
# end CMakeLists.txt