yuzu/.travis/macos/build.sh

19 lines
452 B
Bash
Raw Normal View History

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