Check for MS VC++ 2010
This commit is contained in:
7
make.ps1
7
make.ps1
@@ -120,6 +120,13 @@ elseif ($command -eq "dependencies")
|
|||||||
cp download/windows/*.dll ..
|
cp download/windows/*.dll ..
|
||||||
cd ..
|
cd ..
|
||||||
echo "Dependencies copied."
|
echo "Dependencies copied."
|
||||||
|
|
||||||
|
$dep = "Microsoft Visual C++ 2010"
|
||||||
|
$results = Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | select DisplayName | Where-Object {$_.DisplayName -like $("$dep*")}
|
||||||
|
if (!($results -is [array]) -and !$results.DisplayName)
|
||||||
|
{
|
||||||
|
Write-Host "Warning! Freetype6.dll requires Microsoft Visual C++ 2010 x86 Redistributable!" -Foreground "Red"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
elseif ($command -eq "test")
|
elseif ($command -eq "test")
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user