mirror of
https://github.com/enduro2d/enduro2d-bootstrap.git
synced 2026-03-22 12:55:31 +07:00
9 lines
170 B
Bash
Executable File
9 lines
170 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build
|
|
mkdir -p $BUILD_DIR/Debug
|
|
pushd $BUILD_DIR/Debug
|
|
cmake -DCMAKE_BUILD_TYPE=Debug ../..
|
|
cmake --build .
|
|
popd
|