From e2129673c12750a89b5939d0d353cfc597fc8c46 Mon Sep 17 00:00:00 2001 From: Myk Taylor Date: Sun, 9 Aug 2020 10:11:24 -0700 Subject: [PATCH] fix zlib path on windows --- plugins/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt index 2bc135d33..c2798cd7d 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt @@ -86,7 +86,7 @@ add_library(expat STATIC IMPORTED) set_target_properties(expat PROPERTIES IMPORTED_LOCATION ${LIBEXPAT_LIB}) if(WIN32) - set(LIB_Z_LIB "zlib.lib") + set(LIB_Z_LIB "depends/zlib/lib/zlib.lib") else() set(LIB_Z_LIB "z") endif()