Files
cmake/install.bat
2022-06-28 11:24:35 +03:00

8 lines
133 B
Batchfile

@echo off
if not exist build mkdir build
cd build && ^
cmake -G "CodeBlocks - MinGW Makefiles" .. && ^
make install && ^
cd ..
pause