Skip to content

Commit

Permalink
cmake: fix __init__.py.in for MSVC
Browse files Browse the repository at this point in the history
note: C++ samples binaries still fails....
  • Loading branch information
Mizux committed Jan 27, 2025
1 parent 8f62877 commit b641768
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ortools/python/__init__.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -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}...")
Expand Down

0 comments on commit b641768

Please sign in to comment.