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
|
|
|
|
2018-08-23 22:32:48 +00:00
|
|
|
# TODO: Build using ninja instead of make
|
2017-10-06 19:58:48 +00:00
|
|
|
mkdir build && cd build
|
2019-08-20 06:45:39 +00:00
|
|
|
cmake .. -DCMAKE_OSX_ARCHITECTURES="x86_64;x86_64h" -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
|
2017-10-06 19:58:48 +00:00
|
|
|
make -j4
|
|
|
|
|
|
|
|
ctest -VV -C Release
|