Fix Windows mpv DLL name: libmpv-2.dll
This commit is contained in:
parent
2fbf2f6472
commit
f58e7e3649
|
|
@ -26,7 +26,7 @@ hiddenimports = [
|
||||||
a = Analysis(
|
a = Analysis(
|
||||||
['booru_viewer/main_gui.py'],
|
['booru_viewer/main_gui.py'],
|
||||||
pathex=[],
|
pathex=[],
|
||||||
binaries=[('mpv-2.dll', '.')] if sys.platform == 'win32' else [],
|
binaries=[('libmpv-2.dll', '.')] if sys.platform == 'win32' else [],
|
||||||
datas=[('icon.png', '.')],
|
datas=[('icon.png', '.')],
|
||||||
hiddenimports=hiddenimports,
|
hiddenimports=hiddenimports,
|
||||||
hookspath=[],
|
hookspath=[],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue