Skip to content

Commit eae9891

Browse files
committed
Switch variable name casing
1 parent c50c40e commit eae9891

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

platforms/Windows/bundle/installer.wixproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
$(DefineConstants);
99
IncludeAndroid=$(Platforms.Contains("android"));
1010
IncludeWindows=$(Platforms.Contains("windows"));
11-
Include_NoAsserts=$(ToolchainVariants.Contains("noasserts"));
11+
IncludeNoAsserts=$(ToolchainVariants.Contains("noasserts"));
1212
</DefineConstants>
1313
</PropertyGroup>
1414

@@ -18,13 +18,13 @@
1818

1919
<ItemGroup>
2020
<ProjectReference Include="..\bld\asserts\bld.asserts.wixproj" BindName="bld.asserts" />
21-
<ProjectReference Include="..\bld\noasserts\bld.noasserts.wixproj" BindName="bld.noasserts" Condition="$(Include_NoAsserts) == True"/>
21+
<ProjectReference Include="..\bld\noasserts\bld.noasserts.wixproj" BindName="bld.noasserts" Condition="$(IncludeNoAsserts) == True"/>
2222
<ProjectReference Include="..\cli\asserts\cli.asserts.wixproj" BindName="cli.asserts" />
23-
<ProjectReference Include="..\cli\noasserts\cli.noasserts.wixproj" BindName="cli.noasserts" Condition="$(Include_NoAsserts) == True"/>
23+
<ProjectReference Include="..\cli\noasserts\cli.noasserts.wixproj" BindName="cli.noasserts" Condition="$(IncludeNoAsserts) == True"/>
2424
<ProjectReference Include="..\dbg\asserts\dbg.asserts.wixproj" BindName="dbg.asserts" />
25-
<ProjectReference Include="..\dbg\noasserts\dbg.noasserts.wixproj" BindName="dbg.noasserts" Condition="$(Include_NoAsserts) == True"/>
25+
<ProjectReference Include="..\dbg\noasserts\dbg.noasserts.wixproj" BindName="dbg.noasserts" Condition="$(IncludeNoAsserts) == True"/>
2626
<ProjectReference Include="..\ide\asserts\ide.asserts.wixproj" BindName="ide.asserts" />
27-
<ProjectReference Include="..\ide\noasserts\ide.noasserts.wixproj" BindName="ide.noasserts" Condition="$(Include_NoAsserts) == True"/>
27+
<ProjectReference Include="..\ide\noasserts\ide.noasserts.wixproj" BindName="ide.noasserts" Condition="$(IncludeNoAsserts) == True"/>
2828
<ProjectReference Include="..\rtl\msi\rtlmsi.wixproj" BindName="rtl" />
2929
</ItemGroup>
3030

platforms/Windows/bundle/installer.wxs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
<Variable Name="OptionsInstallAssertsToolchain" bal:Overridable="yes" Persisted="yes" Value="1" />
5858
<Variable Name="OptionsInstallNoAssertsToolchain" bal:Overridable="yes" Persisted="yes" Value="0" />
5959

60-
<?if $(Include_NoAsserts) == True?>
60+
<?if $(IncludeNoAsserts) == True?>
6161
<Variable Name="OptionsIncludeNoAsserts" bal:Overridable="yes" Persisted="yes" Value="1" />
6262
<?else ?>
6363
<Variable Name="OptionsIncludeNoAsserts" bal:Overridable="yes" Persisted="yes" Value="0" />
@@ -98,7 +98,7 @@
9898
<MsiProperty Name="ADDTOOLCHAINTOPATH" Value="1"/>
9999
</MsiPackage>
100100

101-
<?if $(Include_NoAsserts) == True?>
101+
<?if $(IncludeNoAsserts) == True?>
102102
<MsiPackage
103103
SourceFile="!(bindpath.bld.noasserts)\bld.noasserts.msi"
104104
InstallCondition="OptionsInstallNoAssertsToolchain = 1"
@@ -115,7 +115,7 @@
115115
<MsiProperty Name="INSTALLROOT" Value="[InstallRoot]" />
116116
</MsiPackage>
117117

118-
<?if $(Include_NoAsserts) == True?>
118+
<?if $(IncludeNoAsserts) == True?>
119119
<MsiPackage
120120
SourceFile="!(bindpath.cli.noasserts)\cli.noasserts.msi"
121121
InstallCondition="OptionsInstallCLI = 1 and OptionsInstallNoAssertsToolchain = 1"
@@ -131,7 +131,7 @@
131131
<MsiProperty Name="INSTALLROOT" Value="[InstallRoot]" />
132132
</MsiPackage>
133133

134-
<?if $(Include_NoAsserts) == True?>
134+
<?if $(IncludeNoAsserts) == True?>
135135
<MsiPackage
136136
SourceFile="!(bindpath.dbg.noasserts)\dbg.noasserts.msi"
137137
InstallCondition="OptionsInstallDBG = 1 and OptionsInstallNoAssertsToolchain = 1"
@@ -147,7 +147,7 @@
147147
<MsiProperty Name="INSTALLROOT" Value="[InstallRoot]" />
148148
</MsiPackage>
149149

150-
<?if $(Include_NoAsserts) == True?>
150+
<?if $(IncludeNoAsserts) == True?>
151151
<MsiPackage
152152
SourceFile="!(bindpath.ide.noasserts)\ide.noasserts.msi"
153153
InstallCondition="OptionsInstallIDE = 1 and OptionsInstallNoAssertsToolchain = 1"

0 commit comments

Comments
 (0)