Skip to content

Instantly share code, notes, and snippets.

@onyx-and-iris
Created November 15, 2023 16:04
Show Gist options
  • Save onyx-and-iris/7b94547250451e804140d2e3838cb68b to your computer and use it in GitHub Desktop.
Save onyx-and-iris/7b94547250451e804140d2e3838cb68b to your computer and use it in GitHub Desktop.
Spec file for buildling nvda-voicemeeter for Basic kind
# -*- mode: python ; coding: utf-8 -*-
block_cipher = None
added_files = [
( 'controllerClient/x64', 'controllerClient/x64' ),
( 'controllerClient/x86', 'controllerClient/x86' ),
]
a = Analysis(
['basic.py'],
pathex=[],
binaries=[],
datas=added_files,
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False,
)
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
exe = EXE(
pyz,
a.scripts,
[],
exclude_binaries=True,
name='basic',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)
coll = COLLECT(
exe,
a.binaries,
a.zipfiles,
a.datas,
strip=False,
upx=True,
upx_exclude=[],
name='basic',
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment