Skip to content

Commit

Permalink
Making sure the paths are escaped properly
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwright committed Oct 30, 2023
1 parent 1bb5beb commit 50e884d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pyinstaller.spec
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ hidden_imports = hidden_imports + hidden_imports_numpy

if sys.platform == 'win32':
# print(os.path.join(os.environ['CPATH']))
dlls = [('C:\hostedtoolcache\windows\Python\3.10.11\x64\Lib\site-packages\casadi\libcasadi.dll', '.'),
('C:\hostedtoolcache\windows\Python\3.10.11\x64\Lib\site-packages\casadi\libcasadi_nlpsol_ipopt.dll', '.'),
('C:\hostedtoolcache\windows\Python\3.10.11\x64\Lib\site-packages\casadi\libgfortran-3.dll', '.'),
('C:\hostedtoolcache\windows\Python\3.10.11\x64\Lib\site-packages\casadi\libquadmath-0.dll', '.')]
dlls = [('C:\\hostedtoolcache\\windows\\Python\\3.10.11\\x64\\Lib\\site-packages\\casadi\\libcasadi.dll', '.'),
('C:\\hostedtoolcache\\windows\\Python\\3.10.11\\x64\\Lib\\site-packages\\casadi\\libcasadi_nlpsol_ipopt.dll', '.'),
('C:\\hostedtoolcache\\windows\\Python\\3.10.11\\x64\\Lib\\site-packages\\casadi\\libgfortran-3.dll', '.'),
('C:\\hostedtoolcache\\windows\\Python\\3.10.11\\x64\\Lib\\site-packages\\casadi\\libquadmath-0.dll', '.')]
else:
dlls = []

Expand Down

0 comments on commit 50e884d

Please sign in to comment.