mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
51 lines
959 B
Python
51 lines
959 B
Python
# -*- mode: python -*-
|
|
|
|
block_cipher = None
|
|
|
|
|
|
analysis = Analysis(
|
|
['./qt_ui/main.py'],
|
|
pathex=['.'],
|
|
binaries=[],
|
|
datas=[
|
|
('resources', 'resources'),
|
|
('resources/caucasus.p', 'dcs/terrain/'),
|
|
('resources/nevada.p', 'dcs/terrain/'),
|
|
('buildnumber', './')
|
|
],
|
|
hookspath=[],
|
|
runtime_hooks=[],
|
|
excludes=[],
|
|
win_no_prefer_redirects=False,
|
|
win_private_assemblies=False,
|
|
cipher=block_cipher,
|
|
noarchive=False,
|
|
)
|
|
pyz = PYZ(
|
|
analysis.pure,
|
|
analysis.zipped_data,
|
|
cipher=block_cipher,
|
|
)
|
|
exe = EXE(
|
|
pyz,
|
|
analysis.scripts,
|
|
[],
|
|
icon="resources/icon.ico",
|
|
exclude_binaries=True,
|
|
name='liberation_main',
|
|
debug=False,
|
|
bootloader_ignore_signals=False,
|
|
strip=False,
|
|
upx=True,
|
|
console=True,
|
|
)
|
|
coll = COLLECT(
|
|
exe,
|
|
analysis.binaries,
|
|
analysis.zipfiles,
|
|
analysis.datas,
|
|
strip=False,
|
|
upx=True,
|
|
name='dcs_liberation',
|
|
)
|