7 lines
98 B
Python
Executable File
7 lines
98 B
Python
Executable File
#!/bin/sh
|
|
rm -rf bin/Debug
|
|
mkdir bin/Debug
|
|
cd bin/Debug
|
|
cmake ../.. -DCMAKE_BUILD_TYPE=Debug
|
|
make
|