summaryrefslogtreecommitdiff
path: root/backend/CMakeLists.txt
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-06-12 13:31:33 +0200
committerEugen Wissner <belka@caraus.de>2026-06-12 13:31:33 +0200
commit6719ed7ed31f293cbdb2d2cf1112489a96f783e0 (patch)
tree831dfc66751d722031217e96ff1899d306ff7e6d /backend/CMakeLists.txt
parentb90c277798de0630488cb983ca13b00b282525ff (diff)
parent1e12f2af8b9ec50144421d998e98e4809071e118 (diff)
downloadkatja-6719ed7ed31f293cbdb2d2cf1112489a96f783e0.tar.gz
Merge branch 'raii'
Diffstat (limited to 'backend/CMakeLists.txt')
-rw-r--r--backend/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/backend/CMakeLists.txt b/backend/CMakeLists.txt
index fe2bfbf..4c5a123 100644
--- a/backend/CMakeLists.txt
+++ b/backend/CMakeLists.txt
@@ -5,6 +5,7 @@
find_package(CURL)
find_package(PkgConfig REQUIRED)
find_package(SQLite3)
+find_package(Boost REQUIRED COMPONENTS filesystem process)
pkg_check_modules(deps REQUIRED IMPORTED_TARGET glib-2.0 gio-2.0 bzip2)
add_library(backend)
@@ -16,6 +17,6 @@ target_sources(backend
configure_file(config.h.in ${CMAKE_BINARY_DIR}/generated/config.h)
include_directories(${CMAKE_BINARY_DIR}/generated/)
-target_link_libraries(backend PkgConfig::deps CURL::libcurl ${SQLite3_LIBRARIES})
+target_link_libraries(backend PkgConfig::deps CURL::libcurl ${SQLite3_LIBRARIES} Boost::filesystem Boost::process)
file(COPY metadata.db DESTINATION ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_LOCALSTATEDIR})