We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d470f29 commit 8be4b78Copy full SHA for 8be4b78
1 file changed
vease-back.spec
@@ -7,12 +7,15 @@ datas = []
7
datas += collect_data_files('opengeodeweb_back')
8
datas += collect_data_files('vease_back')
9
datas += copy_metadata('vease_back', recursive=True)
10
+binaries = []
11
12
+if sys.platform.startswith('linux'):
13
+ binaries.append(('/usr/lib/x86_64-linux-gnu/libgomp.so*', '.'))
14
15
a = Analysis(
16
['src/vease_back/app.py'],
17
pathex=[],
- binaries=[],
18
+ binaries=binaries,
19
datas=datas,
20
hiddenimports=[],
21
hookspath=[],
0 commit comments