This repository was archived by the owner on Aug 22, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 1
1
function GetConfig ($platform , $name )
2
2
{
3
3
$config = $null
4
+ $options = " /includeOptional /installedSupport /deprecated"
4
5
5
6
if ($name -eq " dll-Q8" )
6
7
{
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" }
8
9
}
9
10
elseif ($name -eq " dll-Q16" )
10
11
{
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" }
12
13
}
13
14
elseif ($name -eq " static-Q8" )
14
15
{
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" }
16
17
}
17
18
elseif ($name -eq " static-Q16" )
18
19
{
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" }
20
21
}
21
22
22
23
elseif ($name -eq " hdri-dll-Q16" )
23
24
{
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" }
25
26
}
26
27
elseif ($name -eq " hdri-static-Q16" )
27
28
{
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" }
29
30
}
30
31
31
32
elseif ($name -eq " portable-Q16" )
You can’t perform that action at this time.
0 commit comments