ci: Generate universal macOS build.

This commit is contained in:
Steveice10 2023-01-05 15:16:40 -08:00
parent a8848cce43
commit 5d0e60a6aa
3 changed files with 13 additions and 13 deletions

View file

@ -2,7 +2,6 @@
set -o pipefail
export Qt5_DIR=$(brew --prefix)/opt/qt5
export PATH="/usr/local/opt/ccache/libexec:$PATH"
# ccache configurations
export CCACHE_CPP2=yes
@ -16,13 +15,17 @@ export ASM="clang"
ccache -s
mkdir build && cd build
# TODO: CryptoPP and LibreSSL ASM disabled due to platform detection issues in build.
cmake .. -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" \
-DENABLE_QT_TRANSLATION=ON \
-DCITRA_ENABLE_COMPATIBILITY_REPORTING=${ENABLE_COMPATIBILITY_REPORTING:-"OFF"} \
-DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON \
-DUSE_DISCORD_PRESENCE=ON \
-DENABLE_FFMPEG_AUDIO_DECODER=ON \
-DENABLE_FFMPEG_VIDEO_DUMPER=ON \
-DCRYPTOPP_OPT_DISABLE_ASM=ON \
-DENABLE_ASM=OFF \
-GNinja
ninja