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-04-07 09:49:16 -0400
commit206017248026ba8ba44851b9e43181f34b3241d9 (patch)
tree8f4447447f7abe74b6b7dbdce365026ee65ebcc6 /CMakeLists.txt
parentd3a39e32a33b7268b6c9329398efa2d12466feb7 (diff)
downloadstasis-206017248026ba8ba44851b9e43181f34b3241d9.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})