We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90b45bb commit 3bf3005Copy full SHA for 3bf3005
1 file changed
pyinstaller.spec
@@ -3,7 +3,7 @@
3
import sys
4
from pathlib import Path
5
import parso
6
-from PyInstaller.utils.hooks import collect_data_files
+from PyInstaller.utils.hooks import collect_data_files, collect_dynamic_libs
7
8
block_cipher = None
9
@@ -12,7 +12,9 @@ parso_grammar = (Path(parso.__file__).parent / 'python').glob('grammar*')
12
a = Analysis(
13
['run.py'],
14
pathex=['.'],
15
- binaries=[],
+ binaries=[
16
+ *collect_dynamic_libs('casadi'),
17
+ ],
18
datas=[
19
('cq_editor/icons_res.py', 'cq_editor'),
20
*[(str(p), 'parso/python') for p in parso_grammar],
0 commit comments