From b189ea27b4ed161e10d73a66e4b215e69e451f89 Mon Sep 17 00:00:00 2001 From: TheAssassin Date: Wed, 29 Aug 2018 22:23:53 +0200 Subject: [PATCH] Switch to ninja --- scripts/linux/build-appimage.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/linux/build-appimage.sh b/scripts/linux/build-appimage.sh index 292d34ed72..daa2facb32 100644 --- a/scripts/linux/build-appimage.sh +++ b/scripts/linux/build-appimage.sh @@ -28,10 +28,10 @@ pushd "$BUILD_DIR" # standard linuxdeploy pattern #see https://docs.appimage.org/packaging-guide/from-source/index.html for more information -cmake "$REPO_ROOT" -DCMAKE_INSTALL_PREFIX=/usr +cmake "$REPO_ROOT" -DCMAKE_INSTALL_PREFIX=/usr -G Ninja -make -j$(nproc) VERBOSE=1 -make install DESTDIR=AppDir +ninja -v -j$(nproc) +DESTDIR=AppDir ninja install wget https://github.com/TheAssassin/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage chmod +x linuxdeploy*.AppImage