2017-07-17 17:39:10 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
set -o pipefail
|
|
|
|
|
2019-08-14 21:59:13 +02:00
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.12
|
2017-07-17 17:39:10 +02:00
|
|
|
|
|
|
|
mkdir build && cd build
|
2018-01-14 13:58:30 +01:00
|
|
|
cmake .. -GXcode -DBoost_INCLUDE_DIRS=${PWD}/../externals/ext-boost -DDYNARMIC_TESTS=0
|
2017-07-17 17:39:10 +02:00
|
|
|
xcodebuild -configuration Release
|