Files
2025-01-18 13:44:08 +01:00

12 lines
249 B
PowerShell

if (Test-Path .\build) {
Remove-Item .\build -Recurse
}
New-Item -Path . -Name build -ItemType Directory
Set-Location .\build
cmake -S .. -B .
cmake --build . --config Release
Set-Location ..
Copy-Item .\build\Release\novelWriter.exe . -Force