Files
cpp_gtk_gstreamer_template/build.sh
T
2023-07-23 06:42:07 -07:00

20 lines
319 B
Bash
Executable File

#!/bin/sh
echo "Building project | making build folder, and going into it..."
rm -rf build
mkdir build
cd build
echo "Running cmake with build type Debug."
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug ..
echo "====================="
echo "Running make..."
echo "====================="
make
#and run
./flowy