mirror of
https://github.com/RPCS3/asmjit.git
synced 2026-07-19 13:27:34 -04: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}
|