diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-02-04 11:51:43 -0500 |
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-04-07 09:49:16 -0400 |
| commit | 206017248026ba8ba44851b9e43181f34b3241d9 (patch) | |
| tree | 8f4447447f7abe74b6b7dbdce365026ee65ebcc6 /CMakeLists.txt | |
| parent | d3a39e32a33b7268b6c9329398efa2d12466feb7 (diff) | |
| download | stasis-206017248026ba8ba44851b9e43181f34b3241d9.tar.gz | |
Implement wheel package parser
* Add raw variant of strlist_append_tokenize function
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 5 |
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}) |
