Welcome to mirror list, hosted at ThFree Co, Russian Federation.

configure-xcode.sh « tools - github.com/asmjit/asmjit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9c7d983d75605e658eebb835e14727fa5e92995 (plain)
1
2
3
4
5
6
7
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}