Skip to content

Commit 58caec2

Browse files
committed
Use libklusolve.dll on Windows.
1 parent fa03a00 commit 58caec2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@
1414

1515
file_list = ['dss_capi_{}'.format(version)]
1616
if i == 0:
17-
file_list.append('klusolve')
17+
if sys.platform == 'win32':
18+
file_list.append('libklusolve')
19+
else:
20+
file_list.append('klusolve')
1821

1922
for fn in file_list:
2023
shutil.copy(

0 commit comments

Comments
 (0)