Files
KissMe/scripts/build.ps1

17 lines
304 B
PowerShell
Raw Normal View History

2023-05-29 01:21:59 +09:00
## Run this build script at root
## Ex)
2023-05-30 20:00:33 +09:00
## > powershell ./scripts/build.ps1
2023-05-29 01:21:59 +09:00
##
$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