mirror of
https://github.com/DaveGamble/cJSON.git
synced 2024-12-27 14:14:07 +08:00
12 lines
338 B
PowerShell
12 lines
338 B
PowerShell
# Script to patch Appveyor build environment for Visual Studio 2008 64bit
|
|
|
|
$url = "https://github.com/menpo/condaci/raw/master/vs2008_patch.zip"
|
|
$output = "$pwd\build\vs2008_patch.zip"
|
|
|
|
(New-Object System.Net.WebClient).DownloadFile($url, $output)
|
|
|
|
7z -e "$pwd\build\vs2008_patch.zip"
|
|
cmd.exe /c "$pwd\build\vs2008_patch\setup_x64.bat"
|
|
|
|
|