diff options
author | 2020-05-28 20:24:40 +0700 | |
---|---|---|
committer | 2020-05-28 20:24:40 +0700 | |
commit | 45615b7f4b7b50df29dc14bcb74fd13850bb7633 (patch) | |
tree | d2c8c1b93d68b3fb87c06060ff3f2435301dd3b9 /3rdparty/asmjit/tools/configure-xcode.sh | |
parent | 3ed842c01cb666533da31a0bc0907ef8bd4a0f63 (diff) |
asmjit: new 3rdparty library
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} |