We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbbaed9 commit 02fa3ffCopy full SHA for 02fa3ff
1 file changed
setup.py
@@ -55,6 +55,10 @@ def _parse_path_env(name):
55
for libdir in library_dirs:
56
extra_link_args.append(f"-Wl,-rpath,{libdir}")
57
58
+if sys.platform == "win32":
59
+ for libdir in library_dirs:
60
+ extra_link_args.append(f"/LIBPATH:{libdir}")
61
+
62
extra_compile_args = []
63
if sys.platform == "win32":
64
extra_compile_args.extend(["/O2"])
0 commit comments