Try to force parallel hunter build on macos

This commit is contained in:
Nicolas Werner 2024-11-20 00:40:07 +01:00
parent 014e55d738
commit 60c19bf1d1
No known key found for this signature in database
GPG key ID: C8D75E610773F2D9

View file

@ -15,6 +15,8 @@ export PATH
CMAKE_PREFIX_PATH="${QT_BASEPATH}/lib/cmake" CMAKE_PREFIX_PATH="${QT_BASEPATH}/lib/cmake"
export CMAKE_PREFIX_PATH export CMAKE_PREFIX_PATH
export CMAKE_BUILD_PARALLEL_LEVEL="$(sysctl -n hw.ncpu)"
cmake -GNinja -S. -Bbuild \ cmake -GNinja -S. -Bbuild \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX="nheko.temp" \ -DCMAKE_INSTALL_PREFIX="nheko.temp" \
@ -31,7 +33,7 @@ cmake --install build
git clone https://github.com/Nheko-Reborn/qt-jdenticon.git git clone https://github.com/Nheko-Reborn/qt-jdenticon.git
( cd qt-jdenticon ( cd qt-jdenticon
qmake qmake
make -j 4 make -j "$CMAKE_BUILD_PARALLEL_LEVEL"
cp libqtjdenticon.dylib ../../nheko.temp/nheko.app/Contents/MacOS cp libqtjdenticon.dylib ../../nheko.temp/nheko.app/Contents/MacOS
) )
# "$(brew --prefix qt6)/bin/macdeployqt" nheko.app -always-overwrite -qmldir=../resources/qml/ # "$(brew --prefix qt6)/bin/macdeployqt" nheko.app -always-overwrite -qmldir=../resources/qml/