10 lines
236 B (Stored with Git LFS)
Batchfile
10 lines
236 B (Stored with Git LFS)
Batchfile
@echo off
|
|
|
|
mkdir "%~dp0build\release-msvc" 2>nul
|
|
|
|
call "%VCINSTALLDIR%\Auxiliary\Build\vcvarsall.bat" x64
|
|
|
|
cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Release -S . -B "%~dp0build\release-msvc"
|
|
|
|
cmake --build "%~dp0build\release-msvc"
|