mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-11-01 12:47:52 +00:00
13 lines
444 B
Bash
Executable file
13 lines
444 B
Bash
Executable file
#!/bin/bash -ex
|
|
|
|
set -o pipefail
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.12
|
|
export Qt5_DIR=$(brew --prefix)/opt/qt5
|
|
export PATH="/usr/local/opt/ccache/libexec:$PATH"
|
|
|
|
mkdir build && cd build
|
|
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
|
|
make -j4
|
|
|
|
ctest -VV -C Release
|