diff --git a/Externals/libpng/CMakeLists.txt b/Externals/libpng/CMakeLists.txt index 622e65b207..824492e285 100644 --- a/Externals/libpng/CMakeLists.txt +++ b/Externals/libpng/CMakeLists.txt @@ -23,7 +23,7 @@ PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} ) -target_link_libraries(png PUBLIC z) +target_link_libraries(png PUBLIC ZLIB::ZLIB) if(NOT MSVC) target_compile_options(png diff --git a/Externals/minizip/CMakeLists.txt b/Externals/minizip/CMakeLists.txt index cfd1f88d59..e911124296 100644 --- a/Externals/minizip/CMakeLists.txt +++ b/Externals/minizip/CMakeLists.txt @@ -13,6 +13,6 @@ endif() add_library(minizip STATIC ${SRCS}) target_include_directories(minizip PUBLIC .) -target_link_libraries(minizip PUBLIC z) +target_link_libraries(minizip PUBLIC ZLIB::ZLIB) add_library(MiniZip::minizip ALIAS minizip) diff --git a/Source/Core/UpdaterCommon/CMakeLists.txt b/Source/Core/UpdaterCommon/CMakeLists.txt index 0b11e10eed..e32907da71 100644 --- a/Source/Core/UpdaterCommon/CMakeLists.txt +++ b/Source/Core/UpdaterCommon/CMakeLists.txt @@ -7,7 +7,7 @@ add_library(updatercommon target_link_libraries(updatercommon PRIVATE uicommon mbedtls - z + ZLIB::ZLIB ed25519 cpp-optparse ) \ No newline at end of file