This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
2017-10-06 19:58:48 +00:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
|
|
|
set -o pipefail
|
|
|
|
|
2018-09-27 12:10:00 +00:00
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.13
|
2017-10-06 19:58:48 +00:00
|
|
|
export Qt5_DIR=$(brew --prefix)/opt/qt5
|
2018-04-11 03:09:35 +00:00
|
|
|
export PATH="/usr/local/opt/ccache/libexec:$PATH"
|
2017-10-06 19:58:48 +00:00
|
|
|
|
|
|
|
mkdir build && cd build
|
2019-11-27 23:12:56 +00:00
|
|
|
cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release -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
|
|
|
|
ninja
|
2017-10-06 19:58:48 +00:00
|
|
|
|
|
|
|
ctest -VV -C Release
|