From 996cc68822127e2adf278279ee16741ec8288864 Mon Sep 17 00:00:00 2001 From: maj00r Date: Mon, 11 May 2026 18:25:01 +0200 Subject: [PATCH] Fix Windows post-build zlib path (Python DLLs folder) Co-authored-by: Cursor --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 40ef4a71..e5d432f6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -470,7 +470,7 @@ if(WITH_PYTHON) if(WIN32) set(EU07_PY_DLL "${Python3_ROOT_DIR}/python314.dll") - set(EU07_PY_ZLIB "${Python3_ROOT_DIR}/zlib1.dll") + set(EU07_PY_ZLIB "${Python3_ROOT_DIR}/DLLs/zlib1.dll") set(EU07_PY_LIBDIR "${Python3_ROOT_DIR}/Lib") set(EU07_PY_DLLSDIR "${Python3_ROOT_DIR}/DLLs") endif()