aboutsummaryrefslogtreecommitdiffstats
path: root/nihil.config/CMakeLists.txt
diff options
context:
space:
mode:
authorLexi Winter <lexi@le-fay.org>2025-07-02 05:49:47 +0100
committerLexi Winter <lexi@le-fay.org>2025-07-02 05:49:47 +0100
commitebe4cb0bdeabd06a31072547af47cacaab7f78c0 (patch)
tree65a81c2c86260b595107ee6c5505583f9afaf39d /nihil.config/CMakeLists.txt
parent5adeb648f74c1771164c0686d6e0fc584cf36d9e (diff)
downloadnihil-ebe4cb0bdeabd06a31072547af47cacaab7f78c0.tar.gz
nihil-ebe4cb0bdeabd06a31072547af47cacaab7f78c0.tar.bz2
replace nihil::generator
the new implementation is much simpler and PD-licensed. the only downside is it doesn't support elements_of. while here, move it to nihil.core.
Diffstat (limited to 'nihil.config/CMakeLists.txt')
-rw-r--r--nihil.config/CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/nihil.config/CMakeLists.txt b/nihil.config/CMakeLists.txt
index 0d8ffee..95b3fdb 100644
--- a/nihil.config/CMakeLists.txt
+++ b/nihil.config/CMakeLists.txt
@@ -1,12 +1,14 @@
# This source code is released into the public domain.
add_library(nihil.config STATIC)
+
target_link_libraries(nihil.config PRIVATE
nihil.std
- nihil.generator
+ nihil.core
nihil.posix
nihil.ucl
)
+
target_sources(nihil.config
PUBLIC FILE_SET modules TYPE CXX_MODULES FILES
nihil.config.ccm
@@ -28,6 +30,8 @@ if(NIHIL_TESTS)
)
target_link_libraries(nihil.config.test PRIVATE
+ nihil.std
+ nihil.core
nihil.config
Catch2::Catch2WithMain)