From 666e1f06d6be94114f4db5b2a4cb75d5e1ecb445 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 7 Apr 2026 14:55:36 -0400 Subject: Make the requirement of libzip known --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 57cdeaa..3a5576f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ endif() pkg_check_modules(ZIP libzip) if (NOT ZIP_FOUND) - message(FATAL_ERROR "libzip is required") + message(FATAL_ERROR "libzip is required (https://libzip.org)") endif () include_directories(${ZIP_INCLUDEDIR}) -- cgit