aboutsummaryrefslogtreecommitdiffstats
path: root/nihil.uuid/CMakeLists.txt
diff options
context:
space:
mode:
authorLexi Winter <lexi@le-fay.org>2025-07-02 03:28:45 +0100
committerLexi Winter <lexi@le-fay.org>2025-07-02 03:28:45 +0100
commit712edacbc75e6dc98c11b3c5f6c52f823c747e2f (patch)
tree1cd3710635e0ec27d12845d21ef774102d13b938 /nihil.uuid/CMakeLists.txt
parenta4607e29540a9352c35afff17193ceeab137cc9d (diff)
downloadnihil-712edacbc75e6dc98c11b3c5f6c52f823c747e2f.tar.gz
nihil-712edacbc75e6dc98c11b3c5f6c52f823c747e2f.tar.bz2
move uuid to util
Diffstat (limited to 'nihil.uuid/CMakeLists.txt')
-rw-r--r--nihil.uuid/CMakeLists.txt22
1 files changed, 0 insertions, 22 deletions
diff --git a/nihil.uuid/CMakeLists.txt b/nihil.uuid/CMakeLists.txt
deleted file mode 100644
index a210322..0000000
--- a/nihil.uuid/CMakeLists.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-# This source code is released into the public domain.
-
-add_library(nihil.uuid STATIC)
-target_link_libraries(nihil.uuid PRIVATE nihil.std)
-target_sources(nihil.uuid
- PUBLIC FILE_SET modules TYPE CXX_MODULES FILES
- uuid.ccm
-)
-
-if(NIHIL_TESTS)
- enable_testing()
-
- add_executable(nihil.uuid.test test.cc)
- target_link_libraries(nihil.uuid.test PRIVATE
- nihil.uuid
- Catch2::Catch2WithMain
- )
-
- include(CTest)
- include(Catch)
- catch_discover_tests(nihil.uuid.test)
-endif()