From 712edacbc75e6dc98c11b3c5f6c52f823c747e2f Mon Sep 17 00:00:00 2001 From: Lexi Winter Date: Wed, 2 Jul 2025 03:28:45 +0100 Subject: move uuid to util --- nihil.util/CMakeLists.txt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'nihil.util/CMakeLists.txt') 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 ) -- cgit v1.2.3