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