aboutsummaryrefslogtreecommitdiffstats
path: root/nihil.ucl/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'nihil.ucl/CMakeLists.txt')
-rw-r--r--nihil.ucl/CMakeLists.txt12
1 files changed, 10 insertions, 2 deletions
diff --git a/nihil.ucl/CMakeLists.txt b/nihil.ucl/CMakeLists.txt
index 5b8ed72..f0e7ec0 100644
--- a/nihil.ucl/CMakeLists.txt
+++ b/nihil.ucl/CMakeLists.txt
@@ -3,7 +3,12 @@
pkg_check_modules(LIBUCL REQUIRED libucl)
add_library(nihil.ucl STATIC)
-target_link_libraries(nihil.ucl PRIVATE nihil.std nihil.core nihil.error nihil.monad)
+target_link_libraries(nihil.ucl PRIVATE
+ nihil.std
+ nihil.core
+ nihil.util
+ nihil.error
+)
target_sources(nihil.ucl
PUBLIC FILE_SET modules TYPE CXX_MODULES FILES
@@ -40,7 +45,10 @@ if(NIHIL_TESTS)
string.test.cc
)
- target_link_libraries(nihil.ucl.test PRIVATE nihil.ucl Catch2::Catch2WithMain)
+ target_link_libraries(nihil.ucl.test PRIVATE
+ nihil.std
+ nihil.ucl
+ Catch2::Catch2WithMain)
include(CTest)
include(Catch)