From f2caad8251e70b3d0d3f8399906292f5ce022cda Mon Sep 17 00:00:00 2001 From: Max Wash Date: Wed, 6 Aug 2025 22:08:52 +0100 Subject: [PATCH] build: libropkg: update dependency linking --- libropkg/CMakeLists.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libropkg/CMakeLists.txt b/libropkg/CMakeLists.txt index 9c091f4..f30f7fb 100644 --- a/libropkg/CMakeLists.txt +++ b/libropkg/CMakeLists.txt @@ -6,10 +6,9 @@ set_target_properties(libropkg PROPERTIES OUTPUT_NAME ropkg) target_link_libraries(libropkg Bluelib::Io - ${ZSTD_LIBRARY}) + Bluelib::Compress) target_include_directories(libropkg PUBLIC - include/ - ${ZSTD_INCLUDE_DIR}) + include/) target_compile_definitions(libropkg PRIVATE LIBROPKG_EXPORT=1 LIBROPKG_STATIC=0)