6 lines
100 B
Batchfile
6 lines
100 B
Batchfile
@echo off
|
|
mkdir .\build
|
|
cd build
|
|
cmake -DBUILD_MODE=Engine ..
|
|
cmake --build . --config Release
|
|
pause |