blob: a6d0f9142052a1917d5f9f6066a33c8a9b4f6712 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
if(NOT minizip_FOUND)
check_init_submodule(${PROJECT_SOURCE_DIR}/primedev/thirdparty/minizip)
set(MZ_ZLIB
ON
CACHE BOOL "Enable ZLIB compression, needed for DEFLATE"
)
set(MZ_BZIP2
OFF
CACHE BOOL "Disable BZIP2 compression"
)
set(MZ_LZMA
OFF
CACHE BOOL "Disable LZMA & XZ compression"
)
set(MZ_PKCRYPT
OFF
CACHE BOOL "Disable PKWARE traditional encryption"
)
set(MZ_WZAES
OFF
CACHE BOOL "Disable WinZIP AES encryption"
)
set(MZ_ZSTD
OFF
CACHE BOOL "Disable ZSTD compression"
)
set(MZ_SIGNING
OFF
CACHE BOOL "Disable zip signing support"
)
add_subdirectory(${PROJECT_SOURCE_DIR}/primedev/thirdparty/minizip minizip)
set(minizip_FOUND
1
PARENT_SCOPE
)
endif()
|