summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2019-10-03 23:11:19 -0400
committerGravatar Lioncash2019-10-04 05:02:01 -0400
commite29492d114a9caecaac8698457157ba93c8ee01e (patch)
treec38d97b46c8af772943c762d94d046d68581b0f9
parentexternals: Use upstream zlib (diff)
downloadyuzu-e29492d114a9caecaac8698457157ba93c8ee01e.tar.gz
yuzu-e29492d114a9caecaac8698457157ba93c8ee01e.tar.xz
yuzu-e29492d114a9caecaac8698457157ba93c8ee01e.zip
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).
-rw-r--r--externals/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt
index d6815fbc5..3539828b8 100644
--- a/externals/CMakeLists.txt
+++ b/externals/CMakeLists.txt
@@ -81,7 +81,7 @@ endif()
81add_subdirectory(zlib EXCLUDE_FROM_ALL) 81add_subdirectory(zlib EXCLUDE_FROM_ALL)
82 82
83# libzip 83# libzip
84add_subdirectory(libzip) 84add_subdirectory(libzip EXCLUDE_FROM_ALL)
85 85
86if (ENABLE_WEB_SERVICE) 86if (ENABLE_WEB_SERVICE)
87 # LibreSSL 87 # LibreSSL