8 lines
153 B
Batchfile
8 lines
153 B
Batchfile
@echo off
|
|
if not exist build mkdir build
|
|
cd build && ^
|
|
cmake -G "CodeBlocks - MinGW Makefiles" .. && ^
|
|
cmake --build . --target install && ^
|
|
cd ..
|
|
pause
|