Skip to content

Commit

Permalink
Allow using shared minizip
Browse files Browse the repository at this point in the history
  • Loading branch information
Mystro256 committed Mar 11, 2020
1 parent bb7623e commit 9f12e0f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -582,8 +582,14 @@ else()
add_subdirectory(Externals/zlib)
endif()

add_subdirectory(Externals/minizip)
include_directories(External/minizip)
pkg_check_modules(MINIZIP minizip)
if(MINIZIP_FOUND)
message(STATUS "Using shared minizip")
else()
message(STATUS "Shared minizip not found, falling back to the static library")
add_subdirectory(Externals/minizip)
include_directories(External/minizip)
endif()

if(NOT APPLE)
check_lib(LZO "(no .pc for lzo2)" lzo2 lzo/lzo1x.h QUIET)
Expand Down

0 comments on commit 9f12e0f

Please sign in to comment.