mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-03-05 13:45:36 +00:00
12 lines
255 B
Bash
12 lines
255 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
set -o pipefail
|
||
|
|
||
|
export MACOSX_DEPLOYMENT_TARGET=10.9
|
||
|
|
||
|
mkdir build && cd build
|
||
|
cmake .. -GXcode -DDYNARMIC_USE_SYSTEM_BOOST=0 -DBoost_INCLUDE_DIRS=${PWD}/../externals/ext-boost -DDYNARMIC_TESTS=0
|
||
|
xcodebuild -configuration Release
|