Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Commit 711d243

Browse files
author
dirk
committed
Include deprecated methods when building the libraries.
1 parent 614566a commit 711d243

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

AppVeyor/Build.ps1

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,32 @@
11
function GetConfig($platform, $name)
22
{
33
$config = $null
4+
$options = "/includeOptional /installedSupport /deprecated"
45

56
if ($name -eq "dll-Q8")
67
{
7-
$config = @{options="/dmt /noHdri /Q8 /includeOptional /installedSupport";perl=$true;type="installer";solution="VisualDynamicMT.sln"}
8+
$config = @{options="/dmt /noHdri /Q8 $options";perl=$true;type="installer";solution="VisualDynamicMT.sln"}
89
}
910
elseif ($name -eq "dll-Q16")
1011
{
11-
$config = @{options="/dmt /noHdri /Q16 /includeOptional /installedSupport";perl=$true;type="installer";solution="VisualDynamicMT.sln"}
12+
$config = @{options="/dmt /noHdri /Q16 $options";perl=$true;type="installer";solution="VisualDynamicMT.sln"}
1213
}
1314
elseif ($name -eq "static-Q8")
1415
{
15-
$config = @{options="/smtd /noHdri /Q8 /includeOptional /installedSupport";perl=$false;type="installer";solution="VisualStaticMTD.sln"}
16+
$config = @{options="/smtd /noHdri /Q8 $options";perl=$false;type="installer";solution="VisualStaticMTD.sln"}
1617
}
1718
elseif ($name -eq "static-Q16")
1819
{
19-
$config = @{options="/smtd /noHdri /Q16 /includeOptional /installedSupport";perl=$false;type="installer";solution="VisualStaticMTD.sln"}
20+
$config = @{options="/smtd /noHdri /Q16 $options";perl=$false;type="installer";solution="VisualStaticMTD.sln"}
2021
}
2122

2223
elseif ($name -eq "hdri-dll-Q16")
2324
{
24-
$config = @{options="/dmt /hdri /Q16 /includeOptional /installedSupport";perl=$true;type="installer";solution="VisualDynamicMT.sln"}
25+
$config = @{options="/dmt /hdri /Q16 $options";perl=$true;type="installer";solution="VisualDynamicMT.sln"}
2526
}
2627
elseif ($name -eq "hdri-static-Q16")
2728
{
28-
$config = @{options="/smtd /hdri /Q16 /includeOptional /installedSupport";perl=$false;type="installer";solution="VisualStaticMTD.sln"}
29+
$config = @{options="/smtd /hdri /Q16 $options";perl=$false;type="installer";solution="VisualStaticMTD.sln"}
2930
}
3031

3132
elseif ($name -eq "portable-Q16")

0 commit comments

Comments
 (0)