Skip to content

Commit

Permalink
Use XSD 4.2.0
Browse files Browse the repository at this point in the history
IB-7856

Signed-off-by: Raul Metsma <[email protected]>
  • Loading branch information
metsma committed Nov 16, 2023
1 parent 14e2f1f commit e88168f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion examples/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.2'
classpath 'com.android.tools.build:gradle:8.1.3'
}
}

Expand Down
23 changes: 12 additions & 11 deletions prepare_win_build_environment.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,32 @@
param(
[string]$vcpkg = "vcpkg\vcpkg.exe",
[string]$git = "git.exe",
[string]$7zip = "C:\Program Files\7-Zip\7z.exe",
[string]$toolset = "142",
[string]$xsdver = "xsd-4.0.0-i686-windows",
[switch]$xsd = $false,
[switch]$dependencies = $false
)

if(!(Test-Path -Path $vcpkg)) {
$vcpkg_dir = (split-path -parent $vcpkg)
& $git clone --depth 1 https://github.com/microsoft/vcpkg $vcpkg_dir
& $vcpkg_dir\bootstrap-vcpkg.bat
}

function xsd() {
$client = new-object System.Net.WebClient
$client.DownloadFile("http://www.codesynthesis.com/download/xsd/4.0/windows/i686/$xsdver.zip", "$PSScriptRoot\$xsdver.zip")
& $7zip x "$xsdver.zip" > $null
Rename-Item $xsdver xsd
& mkdir xsd
foreach($xsdver in @("xsd-4.2.0-x86_64-windows10", "libxsd-4.2.0-windows")) {
$client.DownloadFile("https://www.codesynthesis.com/download/xsd/4.2/windows/windows10/x86_64/$xsdver.zip", "$PSScriptRoot\$xsdver.zip")
& tar xf "$xsdver.zip"
& xcopy /e /r /y $xsdver\*.* xsd
& Remove-Item $xsdver -Force -Recurse -ErrorAction Ignore
}
}

if($xsd) {
xsd
}

if($dependencies) {
if(!(Test-Path -Path $vcpkg)) {
$vcpkg_dir = (split-path -parent $vcpkg)
& $git clone --depth 1 https://github.com/microsoft/vcpkg $vcpkg_dir
& $vcpkg_dir\bootstrap-vcpkg.bat
}
& $vcpkg install --clean-after-build --triplet x86-windows-v$toolset --x-feature=tests --x-install-root=vcpkg_installed_x86
& $vcpkg install --clean-after-build --triplet x64-windows-v$toolset --x-feature=tests --x-install-root=vcpkg_installed_x64
}
Expand Down

0 comments on commit e88168f

Please sign in to comment.