1
0

pyinstaller build: (trivial) format so that win/osx look more similar

This commit is contained in:
SomberNight
2023-11-24 22:32:18 +00:00
parent b551cb5f75
commit 9743bd5219
2 changed files with 10 additions and 7 deletions

View File

@@ -21,12 +21,12 @@ hiddenimports += collect_submodules(f"{PYPKG}.plugins")
binaries = []
# Workaround for "Retro Look":
binaries += [b for b in collect_dynamic_libs('PyQt5') if 'qwindowsvista' in b[0]]
# add libsecp256k1, libusb, etc:
binaries += [(f"{PROJECT_ROOT}/{PYPKG}/*.dll", '.')]
datas = [
(f"{PROJECT_ROOT}/{PYPKG}/*.json", PYPKG),
(f"{PROJECT_ROOT}/{PYPKG}/lnwire/*.csv", f"{PYPKG}/lnwire"),