mirror of
https://github.com/tribufu/sdk-cpp
synced 2025-06-15 19:44:18 +00:00
7 lines
195 B
PowerShell
Executable File
7 lines
195 B
PowerShell
Executable File
#!/usr/bin/env pwsh
|
|
|
|
echo "Building for win-x64"
|
|
New-Item "bin/win-x64" -ItemType Directory -Force
|
|
Remove-Item -Path "bin/win-x64/*" -Force
|
|
msbuild /p:Configuration="debug" /p:Platform="win-x64"
|