From b641768196d1189217e61804b2bbc27bf193eafa Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Mon, 27 Jan 2025 08:22:22 -0800 Subject: [PATCH] cmake: fix __init__.py.in for MSVC note: C++ samples binaries still fails.... --- ortools/python/__init__.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ortools/python/__init__.py.in b/ortools/python/__init__.py.in index c4e01a15cd..56f3a7216a 100644 --- a/ortools/python/__init__.py.in +++ b/ortools/python/__init__.py.in @@ -55,7 +55,7 @@ def _load_ortools_libs(): except: pass else: - for dll in ["zlib1.dll", "abseil_dll.dll", "utf8_validity.dll", "re2.dll", "libprotobuf.dll", "highs.dll"]: + for dll in ["zlib1.dll", "abseil_dll.dll", "utf8_validity.dll", "re2.dll", "libprotobuf.dll", "highs.dll", "ortools.dll"]: dll_path = os.path.join(basedir, ".libs", dll) if os.path.exists(dll_path): print(f"load {dll_path}...")