Skip to content
Snippets Groups Projects
Commit e29492d1 authored by Lioncash's avatar Lioncash
Browse files

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).
parent 80bdb44e
No related branches found
No related tags found
No related merge requests found
...@@ -81,7 +81,7 @@ endif() ...@@ -81,7 +81,7 @@ endif()
add_subdirectory(zlib EXCLUDE_FROM_ALL) add_subdirectory(zlib EXCLUDE_FROM_ALL)
# libzip # libzip
add_subdirectory(libzip) add_subdirectory(libzip EXCLUDE_FROM_ALL)
if (ENABLE_WEB_SERVICE) if (ENABLE_WEB_SERVICE)
# LibreSSL # LibreSSL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment