Files
KissMe/scripts/build.ps1
2023-05-30 20:00:33 +09:00

17 lines
304 B
PowerShell

## Run this build script at root
## Ex)
## > powershell ./scripts/build.ps1
##
$CONSOLE_APP = "KissMeConsole"
Write-Output "build console bin/$CONSOLE_APP.exe"
Set-Location $CONSOLE_APP
Remove-Item -Recurse -Force .build
swift build -c release
Copy-Item ./.build/release/$CONSOLE_APP.exe ../bin