diff options
| author | Lexi Winter <lexi@le-fay.org> | 2025-07-02 04:00:06 +0100 |
|---|---|---|
| committer | Lexi Winter <lexi@le-fay.org> | 2025-07-02 04:00:06 +0100 |
| commit | 5adeb648f74c1771164c0686d6e0fc584cf36d9e (patch) | |
| tree | 060cd918d3dd9e931a1541a43c9edff1a404ff47 /nihil.util/CMakeLists.txt | |
| parent | 06fafff8e9e9c096cc39bde0306caa53ad3a2351 (diff) | |
| download | nihil-5adeb648f74c1771164c0686d6e0fc584cf36d9e.tar.gz nihil-5adeb648f74c1771164c0686d6e0fc584cf36d9e.tar.bz2 | |
move everything from util to core
Diffstat (limited to 'nihil.util/CMakeLists.txt')
| -rw-r--r-- | nihil.util/CMakeLists.txt | 59 |
1 files changed, 0 insertions, 59 deletions
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() |
