Add --windowed argument to pyinstaller for OS X

pull/181/head
globalcow 2018-07-31 14:53:15 +02:00 zatwierdzone przez GitHub
rodzic 6c5e256d73
commit 91aaf404e6
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -22,6 +22,12 @@ pyinstaller_args+="--hidden-import gi.repository.Gtk "
# mac and windows build seem to miss wx import
pyinstaller_args+="--hidden-import wx "
# We need to use the precompiled bootloader linked with graphical Mac OS X
# libraries if we develop a GUI application for Mac:
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
pyinstaller_args+="--windowed "
fi
# This lets pyinstaller see inkex.py, etc.
pyinstaller_args+="-p inkscape-0.92.3/share/extensions "