From 5adeb648f74c1771164c0686d6e0fc584cf36d9e Mon Sep 17 00:00:00 2001 From: Lexi Winter Date: Wed, 2 Jul 2025 04:00:06 +0100 Subject: move everything from util to core --- nihil.util/CMakeLists.txt | 59 ----------------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 nihil.util/CMakeLists.txt (limited to 'nihil.util/CMakeLists.txt') diff --git a/nihil.util/CMakeLists.txt b/nihil.util/CMakeLists.txt deleted file mode 100644 index 30a33b3..0000000 --- a/nihil.util/CMakeLists.txt +++ /dev/null @@ -1,59 +0,0 @@ -# This source code is released into the public domain. - -add_library(nihil.util STATIC) - -target_link_libraries(nihil.util PRIVATE - nihil.std - nihil.core -) - -target_sources(nihil.util - PUBLIC FILE_SET modules TYPE CXX_MODULES FILES - nihil.util.ccm - - capture_stream.ccm - construct.ccm - ctype.ccm - error.ccm - flagset.ccm - guard.ccm - match.ccm - monad.ccm - parse_size.ccm - next_word.ccm - save_errno.ccm - skipws.ccm - sys_error.ccm - tabulate.ccm - uuid.ccm -) - -if(NIHIL_TESTS) - enable_testing() - - add_executable(nihil.util.test - capture_stream.test.cc - ctype.test.cc - error.test.cc - flagset.test.cc - guard.test.cc - match.test.cc - monad.test.cc - parse_size.test.cc - next_word.test.cc - skipws.test.cc - tabulate.test.cc - uuid.test.cc - ) - - target_link_libraries(nihil.util.test PRIVATE - nihil.std - nihil.core - nihil.util - Catch2::Catch2WithMain - ) - - include(CTest) - include(Catch) - catch_discover_tests(nihil.util.test) -endif() -- cgit v1.2.3