mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-17 20:44:37 +03:00
10 lines
189 B
Bash
Executable File
10 lines
189 B
Bash
Executable File
#!/bin/sh
|
|
|
|
ASMJIT_CURRENT_DIR=`pwd`
|
|
ASMJIT_BUILD_DIR="build_xcode"
|
|
|
|
mkdir ../${ASMJIT_BUILD_DIR}
|
|
cd ../${ASMJIT_BUILD_DIR}
|
|
cmake .. -G"Xcode" -DASMJIT_BUILD_TEST=1
|
|
cd ${ASMJIT_CURRENT_DIR}
|