summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/asmjit/tools/configure-xcode.sh
blob: a52c9efa0a4b93d8058dcf70099648b3d2b6062c (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh

BUILD_DIR="build_xcode"
CURRENT_DIR=`pwd`

mkdir -p ../${BUILD_DIR}
cd ../${BUILD_DIR}
cmake .. -G"Xcode" -DASMJIT_TEST=1
cd ${CURRENT_DIR}