f8b3950829
Separate options are now provided for FFmpeg AAC audio decoder and FFmpeg video dumper. This allows users to configure Citra with greater freedom. Also, previously for Linux builds, AAC decoder is accidentally enabled along with the dumper, which could potentially cause patent issues (?). This commit fixes it by only enabling video dumper.
14 lines
577 B
Bash
Executable file
14 lines
577 B
Bash
Executable file
#!/bin/bash -ex
|
|
|
|
set -o pipefail
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.13
|
|
export Qt5_DIR=$(brew --prefix)/opt/qt5
|
|
export PATH="/usr/local/opt/ccache/libexec:$PATH"
|
|
|
|
# TODO: Build using ninja instead of make
|
|
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 -DUSE_DISCORD_PRESENCE=ON -DENABLE_FFMPEG_AUDIO_DECODER=ON -DENABLE_FFMPEG_VIDEO_DUMPER=ON
|
|
make -j4
|
|
|
|
ctest -VV -C Release
|