From e7c2833ccd59672da9c667335c2af1c0e6e74137 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 1 Sep 2016 23:55:48 +0200 Subject: [PATCH] package/ci: use all cores when building with MinGW. Oh, so that's why it was so slow. --- package/ci/appveyor-desktop-mingw.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/ci/appveyor-desktop-mingw.bat b/package/ci/appveyor-desktop-mingw.bat index e97ffe66a..9c7c88949 100644 --- a/package/ci/appveyor-desktop-mingw.bat +++ b/package/ci/appveyor-desktop-mingw.bat @@ -37,8 +37,8 @@ cmake .. ^ -DBUILD_TESTS=ON ^ -DBUILD_GL_TESTS=ON ^ -G "MinGW Makefiles" || exit /b -cmake --build . || exit /b -cmake --build . --target install || exit /b +cmake --build . -- -j || exit /b +cmake --build . --target install -- -j || exit /b rem Test ctest -V -E GLTest || exit /b