From 0e142967fed51c2b071acdcab2753d413122d343 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Tue, 23 Apr 2024 20:50:13 -0400 Subject: [PATCH] xo-unit: build: retire mpl-style unit tests (to drop xo-reflect dep) --- utest/CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/utest/CMakeLists.txt b/utest/CMakeLists.txt index 69c6418d..002be7b6 100644 --- a/utest/CMakeLists.txt +++ b/utest/CMakeLists.txt @@ -2,9 +2,9 @@ set(SELF_EXECUTABLE_NAME utest.unit) set(SELF_SOURCE_FILES - unit_utest_main.cpp - mpl_unit.test.cpp - unit.test.cpp quantity.test.cpp) + unit_utest_main.cpp #mpl_unit.test.cpp + unit.test.cpp #quantity.test.cpp +) add_executable(${SELF_EXECUTABLE_NAME} ${SELF_SOURCE_FILES}) xo_include_options2(${SELF_EXECUTABLE_NAME}) @@ -16,7 +16,7 @@ target_code_coverage(${SELF_EXECUTABLE_NAME} AUTO ALL) # internal dependencies: logutil, ... xo_self_dependency(${SELF_EXECUTABLE_NAME} xo_unit) -xo_dependency(${SELF_EXECUTABLE_NAME} reflect) +#xo_dependency(${SELF_EXECUTABLE_NAME} reflect) # ---------------------------------------------------------------- # 3rd party dependency: catch2: