Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
26
3party/minizip/CMakeLists.txt
Normal file
26
3party/minizip/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
project(minizip)
|
||||
|
||||
set(SRC
|
||||
minizip.cpp
|
||||
minizip.hpp
|
||||
src/ioapi.c
|
||||
src/ioapi.h
|
||||
src/unzip.c
|
||||
src/unzip.h
|
||||
src/zip.c
|
||||
src/zip.h
|
||||
)
|
||||
|
||||
add_library(${PROJECT_NAME} ${SRC})
|
||||
|
||||
target_compile_definitions(${PROJECT_NAME}
|
||||
PUBLIC
|
||||
USE_FILE32API
|
||||
PRIVATE
|
||||
NOCRYPT
|
||||
NOUNCRYPT
|
||||
)
|
||||
|
||||
target_compile_options(${PROJECT_NAME} PRIVATE $<$<C_COMPILER_ID:Clang,AppleClang,GNU>:-Wno-unused-value>)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME} PUBLIC ZLIB::ZLIB)
|
||||
Loading…
Add table
Add a link
Reference in a new issue