yuzu-mirror/.travis/macos/build.sh

19 lines
452 B
Bash

#!/bin/bash -ex
set -o pipefail
export MACOSX_DEPLOYMENT_TARGET=10.12
export Qt5_DIR=$(brew --prefix)/opt/qt5
2018-01-13 15:37:06 +07:00
export UNICORNDIR=$(pwd)/externals/unicorn
mkdir build && cd build
2018-06-04 10:19:45 +07:00
export PATH=/usr/local/opt/ccache/libexec:$PATH
ccache --show-stats > ccache_before
2018-01-13 15:37:06 +07:00
cmake --version
cmake .. -DYUZU_BUILD_UNICORN=ON -DCMAKE_BUILD_TYPE=Release
make -j4
2018-06-04 10:19:45 +07:00
ccache --show-stats > ccache_after
diff -U100 ccache_before ccache_after || true
ctest -VV -C Release