7 lines
97 B
Batchfile
7 lines
97 B
Batchfile
@echo off
|
|
if not exist build mkdir build
|
|
cd build && ^
|
|
cmake_mgw .. && ^
|
|
make install && ^
|
|
cd ..
|