mirror of
https://github.com/enduro2d/enduro2d.git
synced 2025-12-13 15:48:11 +07:00
11 lines
264 B
Bash
Executable File
11 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE}" )" && pwd )"
|
|
|
|
ROOT_DIR="${DIR}/../.."
|
|
BUILD_DIR="${ROOT_DIR}/build/xcode_darwin"
|
|
|
|
mkdir -p "$BUILD_DIR"
|
|
(cd "${BUILD_DIR}" && cmake "${ROOT_DIR}" -G Xcode)
|
|
(cd "${BUILD_DIR}" && open "enduro2d.xcodeproj")
|