You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.2 KiB
66 lines
2.2 KiB
6 years ago
|
param (
|
||
|
[Parameter(Mandatory=$true)][string]$tag
|
||
|
)
|
||
|
|
||
|
Write-Host Downloading native binaries from GitHub Releases...
|
||
|
|
||
|
if (Test-Path $PSScriptRoot\deps\cimgui\)
|
||
|
{
|
||
|
Remove-Item $PSScriptRoot\deps\cimgui\ -Force -Recurse | Out-Null
|
||
|
}
|
||
|
New-Item -ItemType Directory -Force -Path $PSScriptRoot\deps\cimgui\linux-x64 | Out-Null
|
||
|
New-Item -ItemType Directory -Force -Path $PSScriptRoot\deps\cimgui\osx-x64 | Out-Null
|
||
|
New-Item -ItemType Directory -Force -Path $PSScriptRoot\deps\cimgui\win-x86 | Out-Null
|
||
|
New-Item -ItemType Directory -Force -Path $PSScriptRoot\deps\cimgui\win-x64 | Out-Null
|
||
|
|
||
|
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
|
||
|
|
||
|
$client = New-Object System.Net.WebClient
|
||
|
$client.DownloadFile(
|
||
|
"https://github.com/mellinoe/imgui.net-nativebuild/releases/download/$tag/cimgui.win-x86.dll",
|
||
|
"$PSScriptRoot/deps/cimgui/win-x86/cimgui.dll")
|
||
|
if( -not $? )
|
||
|
{
|
||
|
$msg = $Error[0].Exception.Message
|
||
|
Write-Error "Couldn't download x86 cimgui.dll. This most likely indicates the Windows native build failed."
|
||
|
exit
|
||
|
}
|
||
|
|
||
|
Write-Host "- cimgui.dll (x86)"
|
||
|
|
||
|
$client.DownloadFile(
|
||
|
"https://github.com/mellinoe/imgui.net-nativebuild/releases/download/$tag/cimgui.win-x64.dll",
|
||
|
"$PSScriptRoot/deps/cimgui/win-x64/$configuration/cimgui.dll")
|
||
|
if( -not $? )
|
||
|
{
|
||
|
$msg = $Error[0].Exception.Message
|
||
|
Write-Error "Couldn't download x64 cimgui.dll. This most likely indicates the Windows native build failed."
|
||
|
exit
|
||
|
}
|
||
|
|
||
|
Write-Host "- cimgui.dll (x64)"
|
||
|
|
||
|
$client.DownloadFile(
|
||
|
"https://github.com/mellinoe/imgui.net-nativebuild/releases/download/$tag/cimgui.so",
|
||
|
"$PSScriptRoot/deps/cimgui/linux-x64/cimgui.so")
|
||
|
if( -not $? )
|
||
|
{
|
||
|
$msg = $Error[0].Exception.Message
|
||
|
Write-Error "Couldn't download cimgui.so. This most likely indicates the Linux native build failed."
|
||
|
exit
|
||
|
}
|
||
|
|
||
|
Write-Host - cimgui.so
|
||
|
|
||
|
$client.DownloadFile(
|
||
|
"https://github.com/mellinoe/imgui.net-nativebuild/releases/download/$tag/cimgui.dylib",
|
||
|
"$PSScriptRoot/deps/cimgui/osx-x64/cimgui.dylib")
|
||
|
if( -not $? )
|
||
|
{
|
||
|
$msg = $Error[0].Exception.Message
|
||
|
Write-Error "Couldn't download cimgui.dylib. This most likely indicates the macOS native build failed."
|
||
|
exit
|
||
|
}
|
||
|
|
||
|
Write-Host - cimgui.dylib
|