Files
ox/scripts/setup_build
T
2016-12-22 21:15:20 -06:00

9 lines
180 B
Bash
Executable File

#! /usr/bin/env bash
project=$(pwd)/
buildDir="build/release"
mkdir -p $buildDir
pushd $buildDir
cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_BUILD_TYPE=Release $project
popd