7 lines
134 B
Python
7 lines
134 B
Python
#!/bin/sh
|
|
rm -rf bin/Debug/x64
|
|
mkdir bin/Debug/x64
|
|
cd bin/Debug/x64
|
|
cmake ../../.. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_PLATFORM=x64
|
|
make
|