mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 00:15:06 +01:00
30 lines
661 B
Bash
Executable File
30 lines
661 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
set -o pipefail
|
|
|
|
export Qt5_DIR=$(brew --prefix)/opt/qt5
|
|
export PATH="/usr/local/opt/ccache/libexec:$PATH"
|
|
# ccache configurations
|
|
export CCACHE_CPP2=yes
|
|
export CCACHE_SLOPPINESS=time_macros
|
|
|
|
export CC="ccache clang"
|
|
export CXX="ccache clang++"
|
|
|
|
ccache -s
|
|
|
|
mkdir build && cd build
|
|
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 \
|
|
-GNinja
|
|
ninja
|
|
|
|
ccache -s
|
|
|
|
ctest -VV -C Release
|