From ebe4cb0bdeabd06a31072547af47cacaab7f78c0 Mon Sep 17 00:00:00 2001 From: Lexi Winter Date: Wed, 2 Jul 2025 05:49:47 +0100 Subject: 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. --- nihil.config/CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'nihil.config/CMakeLists.txt') 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) -- cgit v1.2.3