17 lines
303 B
PowerShell
17 lines
303 B
PowerShell
## Run this build script at root
|
|
## Ex)
|
|
## > powershell ./scripts/build.sh
|
|
##
|
|
|
|
$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
|