Travis: replace homebrew/versions/qt55 with qt5

This commit is contained in:
Hyunin Song
2018-02-17 13:01:19 +09:00
parent a39ea2b163
commit 0f0b08b852
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
PACKAGES="cmake pkgconfig fftw libogg libvorbis lame libsndfile libsamplerate jack sdl libgig libsoundio stk portaudio node fltk"
if [ $QT5 ]; then
PACKAGES="$PACKAGES homebrew/versions/qt55"
PACKAGES="$PACKAGES qt5"
else
PACKAGES="$PACKAGES cartr/qt4/qt"
fi

View File

@@ -2,7 +2,7 @@
if [ $QT5 ]; then
# Workaround; No FindQt5.cmake module exists
export CMAKE_PREFIX_PATH="$(brew --prefix qt55)"
export CMAKE_PREFIX_PATH="$(brew --prefix qt5)"
fi
cmake $CMAKE_FLAGS -DUSE_WERROR=OFF ..