xo-object2/utest/CMakeLists.txt
Roland Conybeare 375f8c1ec4 xo-gc stack: + request-gc-statistics() primitive
1. xo-gc now depends on xo-object2.
2. use genfacet for ICollector_DX1Collector
3. moves xo-gc utest previously in xo-object2 to more natural
   location in xo-gc/
2026-03-29 13:44:19 -04:00

17 lines
499 B
CMake

# built unittest xo-object2/utest
set(UTEST_EXE utest.object2)
set(UTEST_SRCS
object2_utest_main.cpp
DArray.test.cpp
# DString.test.cpp
# StringOps.test.cpp
# X1Collector.test.cpp # moved to xo-gc/
# Printable.test.cpp # moved to xo-gc/
)
xo_add_utest_executable(${UTEST_EXE} ${UTEST_SRCS})
xo_self_dependency(${UTEST_EXE} xo_object2)
#xo_dependency(${UTEST_EXE} xo_gc)
#xo_dependency(${UTEST_EXE} randomgen)
xo_external_target_dependency(${UTEST_EXE} Catch2 Catch2::Catch2)