From 85c8859a2a343fc9f5b94603b70448d15db12d79 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 3 Oct 2019 23:11:19 -0400 Subject: [PATCH] CMakeLists: Make libzip excluded from the ALL target Likewise, we also only want to link in the libraries that we actually make use of (so we don't need to worry about linking in test targets). --- externals/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index d6815fbc53..3539828b8d 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt @@ -81,7 +81,7 @@ endif() add_subdirectory(zlib EXCLUDE_FROM_ALL) # libzip -add_subdirectory(libzip) +add_subdirectory(libzip EXCLUDE_FROM_ALL) if (ENABLE_WEB_SERVICE) # LibreSSL