forked from openlp/openlp
Add pyobjc to check_dependencies script
This commit is contained in:
parent
65b8b12590
commit
e3329fc8c4
@ -41,6 +41,7 @@ except ImportError:
|
|||||||
|
|
||||||
IS_WIN = sys.platform.startswith('win')
|
IS_WIN = sys.platform.startswith('win')
|
||||||
IS_LIN = sys.platform.startswith('lin')
|
IS_LIN = sys.platform.startswith('lin')
|
||||||
|
IS_MAC = sys.platform.startswith('dar')
|
||||||
|
|
||||||
|
|
||||||
VERS = {
|
VERS = {
|
||||||
@ -66,6 +67,11 @@ LINUX_MODULES = [
|
|||||||
'dbus',
|
'dbus',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
MACOSX_MODULES = [
|
||||||
|
'objc',
|
||||||
|
'AppKit'
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
MODULES = [
|
MODULES = [
|
||||||
'PyQt5',
|
'PyQt5',
|
||||||
@ -234,6 +240,10 @@ def main():
|
|||||||
print('Checking for Linux specific modules...')
|
print('Checking for Linux specific modules...')
|
||||||
for m in LINUX_MODULES:
|
for m in LINUX_MODULES:
|
||||||
check_module(m)
|
check_module(m)
|
||||||
|
elif IS_MAC:
|
||||||
|
print('Checking for Mac OS X specific modules...')
|
||||||
|
for m in MACOSX_MODULES:
|
||||||
|
check_module(m)
|
||||||
verify_versions()
|
verify_versions()
|
||||||
print_qt_image_formats()
|
print_qt_image_formats()
|
||||||
print_enchant_backends_and_languages()
|
print_enchant_backends_and_languages()
|
||||||
|
Loading…
Reference in New Issue
Block a user