aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2026-02-04 11:51:43 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2026-02-04 11:52:11 -0500
commit13048607be43b475433ee6fe1995402e90aef70c (patch)
tree27613e6a312b5651d6e95a4330644d9f52eab062 /CMakeLists.txt
parenteeef791aab59c56f6ca45e42a400bff0c6894a23 (diff)
downloadstasis-13048607be43b475433ee6fe1995402e90aef70c.tar.gz
Implement wheel package parser
* Add raw variant of strlist_append_tokenize function
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 074c2ee..f279dee 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -14,6 +14,11 @@ if (ASAN)
add_link_options(-fsanitize=address)
endif()
+pkg_check_modules(ZIP libzip)
+if (NOT ZIP_FOUND)
+ message(FATAL_ERROR "libzip is required")
+endif ()
+
link_libraries(CURL::libcurl)
link_libraries(LibXml2::LibXml2)
include_directories(${LIBXML2_INCLUDE_DIR})