From 5244952b835042e401bc2a6d4d367ffc2b7c7b20 Mon Sep 17 00:00:00 2001 From: Joseph Donofry Date: Mon, 24 Oct 2022 20:32:43 -0400 Subject: [PATCH] Fix path issue again --- .ci/macos/build.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.ci/macos/build.sh b/.ci/macos/build.sh index bfeaef89..56fb892b 100755 --- a/.ci/macos/build.sh +++ b/.ci/macos/build.sh @@ -19,13 +19,15 @@ cmake -GNinja -S. -Bbuild \ -DHUNTER_ENABLED=ON -DBUILD_SHARED_LIBS=OFF \ -DCMAKE_BUILD_TYPE=RelWithDebInfo -DHUNTER_CONFIGURATION_TYPES=RelWithDebInfo \ -DUSE_BUNDLED_OPENSSL=ON \ - -DUSE_BUNDLED_BOOST=ON \ -DCI_BUILD=ON \ -DCMAKE_OSX_DEPLOYMENT_TARGET=10.15 cmake --build build ( cd build || exit git clone https://github.com/Nheko-Reborn/qt-jdenticon.git - cd qt-jdenticon && qmake && make -j 4 - cp libqtjdenticon.dylib ../nheko.app/Contents/MacOS + ( cd qt-jdenticon || exit + qmake + make -j 4 + cp libqtjdenticon.dylib ../nheko.app/Contents/MacOS + ) macdeployqt nheko.app -always-overwrite -qmldir=../resources/qml/ )