From 804b18b03426bfb919ec29d03c45fc6371c2d48a Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Wed, 24 Feb 2010 20:55:34 +0200 Subject: [PATCH] Add PyInstaller hooks. --- .../pyinstaller/hook-openlp.plugins.bibles.lib.common.py | 1 + ...ok-openlp.plugins.presentations.presentationplugin.py | 3 +++ resources/pyinstaller/hook-openlp.py | 9 +++++++++ 3 files changed, 13 insertions(+) create mode 100644 resources/pyinstaller/hook-openlp.plugins.bibles.lib.common.py create mode 100644 resources/pyinstaller/hook-openlp.plugins.presentations.presentationplugin.py create mode 100644 resources/pyinstaller/hook-openlp.py diff --git a/resources/pyinstaller/hook-openlp.plugins.bibles.lib.common.py b/resources/pyinstaller/hook-openlp.plugins.bibles.lib.common.py new file mode 100644 index 000000000..dc71dc088 --- /dev/null +++ b/resources/pyinstaller/hook-openlp.plugins.bibles.lib.common.py @@ -0,0 +1 @@ +hiddenimports = ['chardet'] \ No newline at end of file diff --git a/resources/pyinstaller/hook-openlp.plugins.presentations.presentationplugin.py b/resources/pyinstaller/hook-openlp.plugins.presentations.presentationplugin.py new file mode 100644 index 000000000..8b7d6b8a2 --- /dev/null +++ b/resources/pyinstaller/hook-openlp.plugins.presentations.presentationplugin.py @@ -0,0 +1,3 @@ +hiddenimports = ['openlp.plugins.presentations.lib.impresscontroller', + 'openlp.plugins.presentations.lib.powerpointcontroller', + 'openlp.plugins.presentations.lib.pptviewcontroller'] \ No newline at end of file diff --git a/resources/pyinstaller/hook-openlp.py b/resources/pyinstaller/hook-openlp.py new file mode 100644 index 000000000..bd97e4aec --- /dev/null +++ b/resources/pyinstaller/hook-openlp.py @@ -0,0 +1,9 @@ +hiddenimports = ['plugins.songs.songsplugin', + 'plugins.bibles.bibleplugin', + 'plugins.presentations.presentationplugin', + 'plugins.media.mediaplugin', + 'plugins.images.imageplugin', + 'plugins.custom.customplugin', + 'plugins.songusage.songusageplugin', + 'plugins.remotes.remoteplugin', + 'plugins.alerts.alertsplugin'] \ No newline at end of file