13 lines
174 B
Bash
Executable File
13 lines
174 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
source $(dirname $0)/env.sh
|
|
|
|
cd $LUNA_ROOT
|
|
|
|
tools/setup.sh
|
|
|
|
tools/full-clean.sh
|
|
|
|
cmake -S . -B $BUILD_DIR -G "$CMAKE_GEN"
|
|
cmake --build $BUILD_DIR |