summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/asmjit/tools/configure-xcode.sh
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/asmjit/tools/configure-xcode.sh')
-rw-r--r--3rdparty/asmjit/tools/configure-xcode.sh8
1 files changed, 8 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..d9c7d983d75
--- /dev/null
+++ b/3rdparty/asmjit/tools/configure-xcode.sh
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+CURRENT_DIR="`pwd`"
+BUILD_DIR="${CURRENT_DIR}/../build"
+BUILD_OPTIONS="-G Xcode -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DASMJIT_TEST=1"
+
+mkdir -p "${BUILD_DIR}"
+eval cmake "${CURRENT_DIR}/.." -B "${BUILD_DIR}" ${BUILD_OPTIONS}