diff options
Diffstat (limited to '3rdparty/asmjit/tools/configure-xcode.sh')
-rw-r--r-- | 3rdparty/asmjit/tools/configure-xcode.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3rdparty/asmjit/tools/configure-xcode.sh b/3rdparty/asmjit/tools/configure-xcode.sh new file mode 100644 index 00000000000..a52c9efa0a4 --- /dev/null +++ b/3rdparty/asmjit/tools/configure-xcode.sh @@ -0,0 +1,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} |