15 lines
185 B
Bash
Executable File
15 lines
185 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -rf build/
|
|
mkdir -p build/
|
|
cd build
|
|
|
|
# Build the project
|
|
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug ..
|
|
|
|
make
|
|
|
|
cp ./compile_commands.json ../
|
|
|
|
./ThumbnailGenerator
|