10 lines
179 B
Batchfile
10 lines
179 B
Batchfile
@echo off
|
|
mkdir build
|
|
mkdir build\release
|
|
pushd build\release
|
|
|
|
cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Release ..\..
|
|
cmake --build . --config Release
|
|
|
|
pause
|
|
popd |