diff options
| author | Lexi Winter <lexi@le-fay.org> | 2025-07-02 03:28:45 +0100 |
|---|---|---|
| committer | Lexi Winter <lexi@le-fay.org> | 2025-07-02 03:28:45 +0100 |
| commit | 712edacbc75e6dc98c11b3c5f6c52f823c747e2f (patch) | |
| tree | 1cd3710635e0ec27d12845d21ef774102d13b938 /nihil.util/CMakeLists.txt | |
| parent | a4607e29540a9352c35afff17193ceeab137cc9d (diff) | |
| download | nihil-712edacbc75e6dc98c11b3c5f6c52f823c747e2f.tar.gz nihil-712edacbc75e6dc98c11b3c5f6c52f823c747e2f.tar.bz2 | |
move uuid to util
Diffstat (limited to 'nihil.util/CMakeLists.txt')
| -rw-r--r-- | nihil.util/CMakeLists.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/nihil.util/CMakeLists.txt b/nihil.util/CMakeLists.txt index 4c832c8..486a082 100644 --- a/nihil.util/CMakeLists.txt +++ b/nihil.util/CMakeLists.txt @@ -1,11 +1,13 @@ # This source code is released into the public domain. add_library(nihil.util STATIC) + target_link_libraries(nihil.util PRIVATE nihil.std nihil.core nihil.error ) + target_sources(nihil.util PUBLIC FILE_SET modules TYPE CXX_MODULES FILES nihil.util.ccm @@ -21,6 +23,7 @@ target_sources(nihil.util save_errno.ccm skipws.ccm tabulate.ccm + uuid.ccm ) if(NIHIL_TESTS) @@ -36,9 +39,13 @@ if(NIHIL_TESTS) next_word.test.cc skipws.test.cc tabulate.test.cc + uuid.test.cc ) + target_link_libraries(nihil.util.test PRIVATE - nihil.std nihil.util + nihil.std + nihil.core + nihil.util Catch2::Catch2WithMain ) |
