Files
SimpleRayTracing/build.ps1
2025-04-15 11:29:46 +09:00

8 lines
187 B
PowerShell

if (!(Test-Path -Path "build")) {
New-Item -ItemType Directory -Path "build"
}
Set-Location -Path "build"
cmake -A x64 -DCMAKE_BUILD_TYPE=Release ..
cmake --build . --config Release