mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
23 lines
782 B
CMake
23 lines
782 B
CMake
|
# ZLIB
|
||
|
|
||
|
# Fix Windows missing "zlib.dll":
|
||
|
if(WIN32 AND (${CMAKE_PROJECT_NAME} STREQUAL ${PROJECT_NAME}))
|
||
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${EXECUTABLE_OUTPUT_PATH}/$<CONFIG> CACHE INTERNAL "" FORCE)
|
||
|
endif()
|
||
|
|
||
|
set(ZLIB_COMPAT ON CACHE INTERNAL "" FORCE)
|
||
|
set(ZLIB_ENABLE_TESTS OFF CACHE INTERNAL "" FORCE)
|
||
|
|
||
|
FetchContent_Declare(zlib
|
||
|
GIT_REPOSITORY https://github.com/zlib-ng/zlib-ng
|
||
|
GIT_TAG 2.0.6
|
||
|
USES_TERMINAL_DOWNLOAD TRUE)
|
||
|
FetchContent_MakeAvailable(zlib)
|
||
|
|
||
|
# Fix Windows zlib dll names from "zlibd1.dll" to "zlib.dll":
|
||
|
if(WIN32)
|
||
|
set_target_properties(zlib PROPERTIES OUTPUT_NAME "zlib")
|
||
|
set_target_properties(zlib PROPERTIES DEBUG_POSTFIX "")
|
||
|
set_target_properties(zlib PROPERTIES SUFFIX ".dll")
|
||
|
endif()
|