Add make script and update build job

This commit is contained in:
Veronica Berglyd Olsen
2025-01-18 13:44:08 +01:00
parent d97b985d1c
commit 567d61a8ea
3 changed files with 62 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
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