-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Win/Qt5 build directives for Travis
- Loading branch information
Showing
9 changed files
with
75 additions
and
26 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
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
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 |
---|---|---|
@@ -1,9 +1,16 @@ | ||
#!/usr/bin/env bash | ||
|
||
sudo apt-get install -y nsis cloog-isl libmpc2 mingw32 | ||
PACKAGES="nsis cloog-isl libmpc2 mingw32 | ||
mingw32-x-sdl mingw32-x-libvorbis mingw32-x-fluidsynth mingw32-x-stk | ||
mingw32-x-glib2 mingw32-x-portaudio mingw32-x-libsndfile mingw32-x-fftw | ||
mingw32-x-flac mingw32-x-fltk mingw32-x-libsamplerate | ||
mingw32-x-pkgconfig mingw32-x-binutils mingw32-x-gcc mingw32-x-runtime | ||
mingw32-x-libgig mingw32-x-libsoundio" | ||
|
||
sudo apt-get install -y mingw32-x-qt mingw32-x-sdl mingw32-x-libvorbis \ | ||
mingw32-x-fluidsynth mingw32-x-stk mingw32-x-glib2 mingw32-x-portaudio \ | ||
mingw32-x-libsndfile mingw32-x-fftw mingw32-x-flac mingw32-x-fltk \ | ||
mingw32-x-libsamplerate mingw32-x-pkgconfig mingw32-x-binutils \ | ||
mingw32-x-gcc mingw32-x-runtime mingw32-x-libgig mingw32-x-libsoundio | ||
if [ $QT5 ]; then | ||
PACKAGES="$PACKAGES mingw32-x-qt5base" | ||
else | ||
PACKAGES="$PACKAGES mingw32-x-qt" | ||
fi | ||
|
||
sudo apt-get install -y $PACKAGES |
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 |
---|---|---|
@@ -1,9 +1,20 @@ | ||
#!/usr/bin/env bash | ||
|
||
. .travis/linux.win32.install.sh | ||
# First, install 32-bit deps | ||
|
||
sudo apt-get install -y mingw64-x-qt mingw64-x-sdl mingw64-x-libvorbis \ | ||
mingw64-x-fluidsynth mingw64-x-stk mingw64-x-glib2 mingw64-x-portaudio \ | ||
mingw64-x-libsndfile mingw64-x-fftw mingw64-x-flac mingw64-x-fltk \ | ||
mingw64-x-libsamplerate mingw64-x-pkgconfig mingw64-x-binutils mingw64-x-gcc \ | ||
mingw64-x-runtime mingw64-x-libgig mingw64-x-libsoundio | ||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
. $DIR/linux.win32.install.sh | ||
|
||
PACKAGES="mingw64-x-sdl mingw64-x-libvorbis mingw64-x-fluidsynth mingw64-x-stk | ||
mingw64-x-glib2 mingw64-x-portaudio mingw64-x-libsndfile | ||
mingw64-x-fftw mingw64-x-flac mingw64-x-fltk mingw64-x-libsamplerate | ||
mingw64-x-pkgconfig mingw64-x-binutils mingw64-x-gcc mingw64-x-runtime | ||
mingw64-x-libgig mingw64-x-libsoundio" | ||
|
||
if [ $QT5 ]; then | ||
PACKAGES="$PACKAGES mingw64-x-qt5base" | ||
else | ||
PACKAGES="$PACKAGES mingw64-x-qt" | ||
fi | ||
|
||
sudo apt-get install -y $PACKAGES |
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
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
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
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
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