Added bootstrap for updater. Fixed plugins and dlls path

This commit is contained in:
Manuel Cortez 2018-02-26 11:00:21 -06:00
parent 438c9f5a21
commit cd99e9ab8e
2 changed files with 4 additions and 5 deletions

BIN
src/bootstrap.exe Normal file

Binary file not shown.

View File

@ -1,14 +1,13 @@
# -*- mode: python -*- # -*- mode: python -*-
#import application
block_cipher = None block_cipher = None
a = Analysis(['main.py'], a = Analysis(['main.py'],
pathex=['.'], pathex=['.'],
binaries=[("C:/Program Files (x86)/VideoLAN/VLC/plugins", "plugins"), binaries=[("plugins", "plugins"),
("C:/Program Files (x86)/VideoLAN/VLC/libvlc.dll", "."), ("libvlc.dll", "."),
("C:/Program Files (x86)/VideoLAN/VLC/libvlccore.dll", "."),], ("libvlccore.dll", "."),
("bootstrap.exe", ".")],
datas=[], datas=[],
hiddenimports=[], hiddenimports=[],
hookspath=[], hookspath=[],