aboutsummaryrefslogtreecommitdiff
path: root/src/cli
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli')
-rw-r--r--src/cli/stasis/CMakeLists.txt5
-rw-r--r--src/cli/stasis_indexer/CMakeLists.txt5
2 files changed, 8 insertions, 2 deletions
diff --git a/src/cli/stasis/CMakeLists.txt b/src/cli/stasis/CMakeLists.txt
index ff7fd88..da63d57 100644
--- a/src/cli/stasis/CMakeLists.txt
+++ b/src/cli/stasis/CMakeLists.txt
@@ -6,7 +6,10 @@ add_executable(stasis
system_requirements.c
tpl.c
)
-target_link_libraries(stasis PRIVATE stasis_core)
+target_link_libraries(stasis PRIVATE
+ stasis_core
+ stasis_delivery
+)
target_link_libraries(stasis PUBLIC LibXml2::LibXml2)
install(TARGETS stasis RUNTIME)
diff --git a/src/cli/stasis_indexer/CMakeLists.txt b/src/cli/stasis_indexer/CMakeLists.txt
index 1d4c658..b100925 100644
--- a/src/cli/stasis_indexer/CMakeLists.txt
+++ b/src/cli/stasis_indexer/CMakeLists.txt
@@ -10,6 +10,9 @@ add_executable(stasis_indexer
readmes.h
)
target_include_directories(stasis_indexer PRIVATE ${CMAKE_SOURCE_DIR})
-target_link_libraries(stasis_indexer PRIVATE stasis_core)
+target_link_libraries(stasis_indexer PRIVATE
+ stasis_core
+ stasis_delivery
+)
install(TARGETS stasis_indexer RUNTIME)