2018-01-20 03:55:39 +01:00
|
|
|
[CmdletBinding()]
|
|
|
|
Param(
|
|
|
|
[Parameter(Position=0, mandatory=$true)]
|
2020-11-17 00:01:17 +01:00
|
|
|
[ValidateSet("Init", "Build")]
|
2018-01-20 03:55:39 +01:00
|
|
|
[string]$Task
|
|
|
|
)
|
|
|
|
|
2018-06-22 03:59:27 +02:00
|
|
|
# https://stackoverflow.com/a/41618979/9919772
|
|
|
|
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
|
|
|
|
|
2018-01-20 03:55:39 +01:00
|
|
|
$solution = "vgmstream_full.sln"
|
|
|
|
$vswhere = "dependencies/vswhere.exe"
|
|
|
|
$config = "/p:Configuration=Release"
|
|
|
|
|
|
|
|
function Unzip
|
|
|
|
{
|
|
|
|
param([string]$zipfile, [string]$outpath)
|
|
|
|
Write-Output "Extracting $zipfile"
|
|
|
|
[System.IO.Compression.ZipFile]::ExtractToDirectory($zipfile, $outpath)
|
|
|
|
}
|
|
|
|
|
|
|
|
function Download
|
|
|
|
{
|
|
|
|
param([string]$uri, [string]$outfile)
|
|
|
|
Write-Output "Downloading $uri"
|
|
|
|
$wc = New-Object net.webclient
|
|
|
|
$wc.Downloadfile($uri, $outfile)
|
|
|
|
}
|
|
|
|
|
|
|
|
function Init
|
|
|
|
{
|
|
|
|
Add-Type -AssemblyName System.IO.Compression.FileSystem
|
|
|
|
|
|
|
|
Remove-Item -Path "dependencies" -Recurse -ErrorAction Ignore
|
|
|
|
New-Item dependencies -Type directory -Force | out-null
|
|
|
|
|
2021-03-21 01:23:06 +01:00
|
|
|
#Download "https://github.com/kode54/fdk-aac/archive/master.zip" "dependencies\fdk-aac.zip"
|
|
|
|
#Download "https://github.com/kode54/qaac/archive/master.zip" "dependencies\qaac.zip"
|
2018-01-20 03:55:39 +01:00
|
|
|
Download "https://www.nuget.org/api/v2/package/wtl/9.1.1" "dependencies\wtl.zip"
|
2019-05-11 08:12:07 +02:00
|
|
|
Download "https://github.com/Microsoft/vswhere/releases/download/2.6.7/vswhere.exe" "dependencies\vswhere.exe"
|
2018-01-20 03:55:39 +01:00
|
|
|
|
2021-03-22 01:15:55 +01:00
|
|
|
# foobar anti-hotlink (random link) defeater
|
2021-03-21 01:23:06 +01:00
|
|
|
#Download "https://www.foobar2000.org/SDK" "dependencies\SDK"
|
|
|
|
#$key = (Select-String -Path dependencies\SDK -Pattern "\/([a-f0-9]+)\/SDK-2018-01-11\.zip").matches.groups[1]
|
|
|
|
#Remove-Item -Path "dependencies\SDK"
|
2021-03-22 01:15:55 +01:00
|
|
|
#Download "https://www.foobar2000.org/files/$key/SDK-2018-01-11.zip" "dependencies\foobar.zip"
|
|
|
|
|
|
|
|
# foobar direct link, but 2019< sdks gone ATM
|
|
|
|
#Download "https://www.foobar2000.org/files/SDK-2018-01-11.zip" "dependencies\foobar.zip"
|
|
|
|
|
|
|
|
# mirror
|
|
|
|
Download "https://github.com/vgmstream/vgmstream-deps/raw/master/foobar2000/SDK-2018-02-05.zip" "dependencies\foobar.zip"
|
2018-01-20 03:55:39 +01:00
|
|
|
|
2021-03-21 01:23:06 +01:00
|
|
|
#Unzip "dependencies\fdk-aac.zip" "dependencies\fdk-aac_tmp"
|
|
|
|
#Unzip "dependencies\qaac.zip" "dependencies\qaac_tmp"
|
2018-01-20 03:55:39 +01:00
|
|
|
Unzip "dependencies\wtl.zip" "dependencies\wtl_tmp"
|
|
|
|
Unzip "dependencies\foobar.zip" "dependencies\foobar"
|
|
|
|
|
2021-03-21 01:23:06 +01:00
|
|
|
#Move-Item "dependencies\fdk-aac_tmp\fdk-aac-master" "dependencies\fdk-aac"
|
|
|
|
#Move-Item "dependencies\qaac_tmp\qaac-master" "dependencies\qaac"
|
2018-01-20 03:55:39 +01:00
|
|
|
Move-Item "dependencies\wtl_tmp\lib\native" "dependencies\wtl"
|
|
|
|
|
2021-03-21 01:23:06 +01:00
|
|
|
#Remove-Item -Path "dependencies\fdk-aac_tmp" -Recurse
|
|
|
|
#Remove-Item -Path "dependencies\qaac_tmp" -Recurse
|
2018-01-20 03:55:39 +01:00
|
|
|
Remove-Item -Path "dependencies\wtl_tmp" -Recurse
|
|
|
|
|
|
|
|
[xml]$proj = Get-Content dependencies\foobar\foobar2000\ATLHelpers\foobar2000_ATL_helpers.vcxproj
|
|
|
|
$proj.project.ItemDefinitionGroup | ForEach-Object {
|
|
|
|
$includes = $proj.CreateElement("AdditionalIncludeDirectories", $proj.project.NamespaceURI)
|
|
|
|
$includes.InnerText = "../../../wtl/include"
|
|
|
|
$_.ClCompile.AppendChild($includes)
|
|
|
|
}
|
|
|
|
$proj.Save("dependencies\foobar\foobar2000\ATLHelpers\foobar2000_ATL_helpers.vcxproj")
|
|
|
|
}
|
|
|
|
|
|
|
|
function Build
|
|
|
|
{
|
|
|
|
if(!(Test-Path $vswhere)) { Init }
|
|
|
|
|
2019-05-11 08:12:07 +02:00
|
|
|
$msbuild = & $vswhere -latest -products * -requires Microsoft.Component.MSBuild -find MSBuild\**\Bin\MSBuild.exe
|
2018-01-20 03:55:39 +01:00
|
|
|
|
|
|
|
if(!($msbuild -and $(Test-Path $msbuild))) {
|
|
|
|
Write-Error "Unable to find MSBuild. Is Visual Studio installed?"
|
|
|
|
}
|
|
|
|
|
2020-11-17 00:01:17 +01:00
|
|
|
& $msbuild $solution $config /m
|
2018-01-20 03:55:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
switch ($Task)
|
|
|
|
{
|
|
|
|
"Init" { Init }
|
|
|
|
"Build" { Build }
|
|
|
|
}
|