fsm/build.sh
DataHoarder 6d07061f4d
Some checks failed
continuous-integration/drone/push Build is failing
WiP: Added IES, start configuration
2021-10-29 05:47:28 +02:00

16 lines
218 B
Bash
Executable file

#!/bin/bash
set -ex
pushd "${0%/*}"
if [[ -d "build" ]]; then
rm -r build
fi
mkdir build
pushd build
export CC=clang
export CXX=clang++
export CFLAGS="-ggdb -O0"
export CXXFLAGS="-ggdb -O0"
cmake ..
make -j$(nproc)