From 9559f0701332d47ab4092e0d17c626d85a57529f Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Fri, 15 Jun 2018 19:34:10 -0500 Subject: [PATCH] Adds new VLC stuff in distributable file --- src/setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/setup.py b/src/setup.py index 0b0a4d8e..7f837122 100644 --- a/src/setup.py +++ b/src/setup.py @@ -31,9 +31,10 @@ from requests import certs def get_architecture_files(): if platform.architecture()[0][:2] == "32": return [ - ("", ["../windows-dependencies/x86/oggenc2.exe", "../windows-dependencies/x86/bootstrap.exe"]), + ("", ["../windows-dependencies/x86/oggenc2.exe", "../windows-dependencies/x86/bootstrap.exe", "../windows-dependencies/x86/libvlc.dll", "../windows-dependencies/x86/libvlccore.dll"]), ("Microsoft.VC90.CRT", glob("../windows-dependencies/x86/Microsoft.VC90.CRT/*")), - ("Microsoft.VC90.MFC", glob("../windows-dependencies/x86/Microsoft.VC90.MFC/*")),] + ("Microsoft.VC90.MFC", glob("../windows-dependencies/x86/Microsoft.VC90.MFC/*")), +("plugins", glob("../windows-dependencies/x86/plugins/*/*.dll")),] elif platform.architecture()[0][:2] == "64": return [ ("", ["../windows-dependencies/x64/oggenc2.exe", "../windows-dependencies/x64/bootstrap.exe"]), @@ -49,7 +50,6 @@ def get_data(): ("accessible_output2/lib", glob("accessible_output2/lib/*.dll")), ("keys/lib", glob("keys/lib/*.dll")), ("keymaps", glob("keymaps/*.keymap")), -("share/enchant/myspell", glob("../windows-dependencies/dictionaries/*")), ]+get_sounds()+get_locales()+get_documentation()+sound_lib.find_datafiles()+enchant.utils.win32_data_files()+get_architecture_files()+wx_files() def get_documentation ():