aboutsummaryrefslogtreecommitdiff
path: root/.travis/linux-mingw
diff options
context:
space:
mode:
authorCameron Cawley <ccawley2011@gmail.com>2018-08-23 23:32:48 +0100
committerfearlessTobi <thm.frey@gmail.com>2019-04-16 01:06:34 +0200
commit1f3cc036da6f3c2cfd3a6ba78a5a9daec7a4e808 (patch)
tree232108e7c91b69b6c9068c93616a4241552cfe9c /.travis/linux-mingw
parent1f4dfb3998fc1ef91132a79bd3a5153a56e03eca (diff)
travis: Use Ninja for Travis builds
Diffstat (limited to '.travis/linux-mingw')
-rwxr-xr-x.travis/linux-mingw/docker.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis/linux-mingw/docker.sh b/.travis/linux-mingw/docker.sh
index 6cf43a006..1c3863e69 100755
--- a/.travis/linux-mingw/docker.sh
+++ b/.travis/linux-mingw/docker.sh
@@ -23,8 +23,8 @@ echo '' >> /bin/cmd
chmod +x /bin/cmd
mkdir build && cd build
-cmake .. -DCMAKE_TOOLCHAIN_FILE="$(pwd)/../CMakeModules/MinGWCross.cmake" -DUSE_CCACHE=ON -DYUZU_USE_BUNDLED_UNICORN=ON -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DCMAKE_BUILD_TYPE=Release
-make -j4
+cmake .. -G Ninja -DCMAKE_TOOLCHAIN_FILE="$(pwd)/../CMakeModules/MinGWCross.cmake" -DUSE_CCACHE=ON -DYUZU_USE_BUNDLED_UNICORN=ON -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DCMAKE_BUILD_TYPE=Release
+ninja
# Clean up the dirty hacks
rm /bin/uname && mv /bin/uname1 /bin/uname