summaryrefslogtreecommitdiffstats
path: root/.travis/macos/build.sh
blob: c957cdf21b1f6e49034442fee78347c48879873e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash -ex

set -o pipefail

export MACOSX_DEPLOYMENT_TARGET=10.9
export Qt5_DIR=$(brew --prefix)/opt/qt5

mkdir build && cd build
cmake .. -DUSE_SYSTEM_CURL=ON -DCMAKE_OSX_ARCHITECTURES="x86_64;x86_64h" -DCMAKE_BUILD_TYPE=Release
make -j4

ctest -VV -C Release