EVO-melroy-winegui/scripts/build_debug.sh
2020-06-08 03:24:58 +02:00

12 lines
235 B
Bash
Executable file

#!/usr/bin/env bash
# By: Melroy van den Berg
# Description: Debugging build
if [ ! -d "build_debug" ]; then
echo "Creating build_debug directory..."
mkdir build_debug
fi
cd build_debug
cmake -DCMAKE_BUILD_TYPE=Debug ../ &&
make