diff options
| author | Lexi Winter <lexi@le-fay.org> | 2025-07-02 05:49:47 +0100 |
|---|---|---|
| committer | Lexi Winter <lexi@le-fay.org> | 2025-07-02 05:49:47 +0100 |
| commit | ebe4cb0bdeabd06a31072547af47cacaab7f78c0 (patch) | |
| tree | 65a81c2c86260b595107ee6c5505583f9afaf39d /nihil.config | |
| parent | 5adeb648f74c1771164c0686d6e0fc584cf36d9e (diff) | |
| download | nihil-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')
| -rw-r--r-- | nihil.config/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | nihil.config/store.cc | 1 | ||||
| -rw-r--r-- | nihil.config/store.ccm | 1 |
3 files changed, 5 insertions, 3 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) diff --git a/nihil.config/store.cc b/nihil.config/store.cc index 08850c4..06c2035 100644 --- a/nihil.config/store.cc +++ b/nihil.config/store.cc @@ -3,7 +3,6 @@ module nihil.config; import nihil.std; import nihil.core; -import nihil.generator; namespace nihil::config { diff --git a/nihil.config/store.ccm b/nihil.config/store.ccm index 2ceb52b..45de35e 100644 --- a/nihil.config/store.ccm +++ b/nihil.config/store.ccm @@ -4,7 +4,6 @@ export module nihil.config:store; // The configuration store. There should only be one of these. import nihil.std; -import nihil.generator; import nihil.core; namespace nihil::config { |
