-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
3 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
set -e | ||
|
||
PACKAGES="cmake pkg-config fftw libogg libvorbis lame libsndfile libsamplerate jack sdl libgig libsoundio stk portaudio node fltk [email protected]" | ||
PACKAGES="cmake pkg-config fftw libogg libvorbis lame libsndfile libsamplerate jack sdl libgig libsoundio stk portaudio node fltk qt5" | ||
|
||
if "${TRAVIS}"; then | ||
PACKAGES="$PACKAGES ccache" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,7 @@ MSG_COLOR='\x1B[1;36m' | |
COLOR_RESET='\x1B[0m' | ||
echo -e "$MSG_COLOR\n\nCreating App Bundle \"$APP\"...$COLOR_RESET" | ||
|
||
# Prefer Qt 5.5 (QTBUG-53533) | ||
qtpath=$(brew --prefix [email protected])/bin | ||
qtpath=$(brew --prefix qt5)/bin | ||
|
||
# Fallback Qt 5.6+ | ||
if [ ! -d "$qtpath" ]; then | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,22 +29,12 @@ IF(APPLE) | |
OUTPUT_QUIET ERROR_QUIET | ||
) | ||
IF(NOT BREW_MISSING) | ||
# TODO: [email protected] preffered per https://bugreports.qt.io/browse/QTBUG-53533 | ||
EXECUTE_PROCESS( | ||
COMMAND brew --prefix [email protected] | ||
COMMAND brew --prefix qt5 | ||
OUTPUT_VARIABLE QT_PATH | ||
OUTPUT_STRIP_TRAILING_WHITESPACE | ||
RESULT_VARIABLE QT_MISSING | ||
) | ||
# Fallback to qt5 | ||
IF(QT_MISSING) | ||
EXECUTE_PROCESS( | ||
COMMAND brew --prefix qt5 | ||
OUTPUT_VARIABLE QT_PATH | ||
OUTPUT_STRIP_TRAILING_WHITESPACE | ||
RESULT_VARIABLE QT_MISSING | ||
) | ||
ENDIF() | ||
ELSE() | ||
# qtcreator + mac | ||
EXECUTE_PROCESS( | ||
|