2017-10-06 21:58:48 +02:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
|
|
|
set -o pipefail
|
|
|
|
|
2018-09-27 14:10:00 +02:00
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.13
|
2017-10-06 21:58:48 +02:00
|
|
|
export Qt5_DIR=$(brew --prefix)/opt/qt5
|
2020-05-02 09:48:23 +02:00
|
|
|
export PATH="/usr/local/opt/ccache/libexec:/usr/local/opt/llvm/bin:$PATH"
|
|
|
|
|
|
|
|
export CC="clang"
|
|
|
|
export CXX="clang++"
|
|
|
|
export LDFLAGS="-L/usr/local/opt/llvm/lib"
|
|
|
|
export CPPFLAGS="-I/usr/local/opt/llvm/include"
|
2017-10-06 21:58:48 +02:00
|
|
|
|
|
|
|
mkdir build && cd build
|
2020-01-22 02:54:05 +01:00
|
|
|
cmake .. -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
|
|
|
|
make -j4
|
2017-10-06 21:58:48 +02:00
|
|
|
|
|
|
|
ctest -VV -C Release
|