From 06e3f77e39d106fdc1633e3e6bfc207447a1d805 Mon Sep 17 00:00:00 2001 From: Myk Taylor Date: Sun, 9 Aug 2020 10:47:15 -0700 Subject: [PATCH] fix windows zlib path, hopefully for the last time --- plugins/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt index c2798cd7d..bc897ba7d 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 "depends/zlib/lib/zlib.lib") + set(LIB_Z_LIB "depends/zlib/lib/zlib") else() set(LIB_Z_LIB "z") endif()