mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
removed x64 Visual Studio 9 2008 build
This commit is contained in:
parent
c6f7f78cbb
commit
2caa884f6a
1
.gitignore
vendored
1
.gitignore
vendored
@ -13,3 +13,4 @@ cJSON_test_utils
|
|||||||
libcjson.so.*
|
libcjson.so.*
|
||||||
libcjson_utils.so.*
|
libcjson_utils.so.*
|
||||||
*.orig
|
*.orig
|
||||||
|
.vscode
|
||||||
|
@ -1,13 +0,0 @@
|
|||||||
# 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"
|
|
||||||
|
|
||||||
copy C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\vcvars64.bat C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\amd64\vcvarsamd64.bat
|
|
||||||
|
|
||||||
|
|
@ -66,13 +66,15 @@ environment:
|
|||||||
platform:
|
platform:
|
||||||
- x86
|
- x86
|
||||||
- x64
|
- x64
|
||||||
|
exclude:
|
||||||
|
- platform: x64
|
||||||
|
GENERATOR: "Visual Studio 9 2008"
|
||||||
|
|
||||||
configuration:
|
configuration:
|
||||||
- Release
|
- Release
|
||||||
|
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
- ps: if($env:PLATFORM -eq "x64" -And $GENERATOR -eq 'Visual Studio 9 2008') { .\appveyor-patch.ps1 }
|
|
||||||
- ps: if($env:PLATFORM -eq "x64") { $env:CMAKE_GEN_SUFFIX=" Win64" }
|
- ps: if($env:PLATFORM -eq "x64") { $env:CMAKE_GEN_SUFFIX=" Win64" }
|
||||||
- cmake "-G%GENERATOR%%CMAKE_GEN_SUFFIX%" -DBUILD_SHARED_LIBS=%BUILD_SHARED_LIBS% -DENABLE_CJSON_TEST=%ENABLE_CJSON_TEST% -H. -Bbuild
|
- cmake "-G%GENERATOR%%CMAKE_GEN_SUFFIX%" -DBUILD_SHARED_LIBS=%BUILD_SHARED_LIBS% -DENABLE_CJSON_TEST=%ENABLE_CJSON_TEST% -H. -Bbuild
|
||||||
- cmake --build build --config "%CONFIGURATION%"
|
- cmake --build build --config "%CONFIGURATION%"
|
||||||
|
Loading…
Reference in New Issue
Block a user