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 -*-
#import application
block_cipher = None
a = Analysis(['main.py'],
pathex=['.'],
binaries=[("C:/Program Files (x86)/VideoLAN/VLC/plugins", "plugins"),
("C:/Program Files (x86)/VideoLAN/VLC/libvlc.dll", "."),
("C:/Program Files (x86)/VideoLAN/VLC/libvlccore.dll", "."),],
binaries=[("plugins", "plugins"),
("libvlc.dll", "."),
("libvlccore.dll", "."),
("bootstrap.exe", ".")],
datas=[],
hiddenimports=[],
hookspath=[],