Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WiX: add support for toolchain variant builds #383

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions platforms/Windows/bld/bld.wixproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
<Project Sdk="WixToolset.Sdk/4.0.5">
<PropertyGroup>
<OutputName>bld.$(TOOLCHAIN_VARIANT)</OutputName>

<DefineConstants>
$(DefineConstants);
TOOLCHAIN_ROOT=$(TOOLCHAIN_ROOT);
TOOLCHAIN_ROOT_USR_LIB_CLANG=$(TOOLCHAIN_ROOT)\usr\lib\clang;
TOOLCHAIN_ROOT_USR_LIB_SWIFT_CLANG=$(TOOLCHAIN_ROOT)\usr\lib\swift\clang;
TOOLCHAIN_VARIANT=$(TOOLCHAIN_VARIANT);
WORKAROUND_MIMALLOC_ISSUE_997=$(WORKAROUND_MIMALLOC_ISSUE_997);
</DefineConstants>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions platforms/Windows/bld/bld.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
Version="$(NonSemVerProductVersion)"
Scope="$(PackageScope)">

<Media Id="1" Cabinet="bld.cab" EmbedCab="$(ArePackageCabsEmbedded)" />
<Media Id="1" Cabinet="bld.$(TOOLCHAIN_VARIANT).cab" EmbedCab="$(ArePackageCabsEmbedded)" />

<WixVariable Id="SideBySidePackageUpgradeCode" Value="$(BldUpgradeCode)" />
<FeatureGroupRef Id="SideBySideUpgradeStrategy" />
Expand Down Expand Up @@ -505,7 +505,7 @@
</ComponentGroup>

<ComponentGroup Id="Configuration">
<Component Directory="ToolchainsVersioned">
<Component Directory="VersionedToolchainVariant">
<File Source="$(TOOLCHAIN_ROOT)\ToolchainInfo.plist" />
</Component>
</ComponentGroup>
Expand Down
11 changes: 10 additions & 1 deletion platforms/Windows/bundle/installer.wixproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
<VCRedistDownloadUrl Condition=" '$(VCRedistDownloadUrl)' == '' AND '$(VSMajorVersion)' != '' ">https://aka.ms/vs/$(VSMajorVersion)/release/vc_redist.$(ProductArchitecture).exe</VCRedistDownloadUrl>
<DefineConstants>
$(DefineConstants);
INCLUDE_ASSERTS_TOOLCHAIN=$(INCLUDE_ASSERTS_TOOLCHAIN);
INCLUDE_NOASSERTS_TOOLCHAIN=$(INCLUDE_NOASSERTS_TOOLCHAIN);
INCLUDE_ANDROID_ARM_SDK=$(INCLUDE_ANDROID_ARM_SDK);
INCLUDE_ANDROID_ARM64_SDK=$(INCLUDE_ANDROID_ARM64_SDK);
INCLUDE_ANDROID_X86_SDK=$(INCLUDE_ANDROID_X86_SDK);
Expand All @@ -20,8 +22,15 @@
<PackageReference Include="WixToolset.Bal.wixext" Version="4.0.5" />
</ItemGroup>

<ItemGroup Condition=" '$(INCLUDE_ASSERTS_TOOLCHAIN)' != '' ">
<ProjectReference Include="..\bld\bld.wixproj" Properties="TOOLCHAIN_VARIANT=asserts" BindName="bld.asserts" />
</ItemGroup>

<ItemGroup Condition=" '$(INCLUDE_NOASSERTS_TOOLCHAIN)' != '' ">
<ProjectReference Include="..\bld\bld.wixproj" Properties="TOOLCHAIN_VARIANT=noasserts" BindName="bld.noasserts" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\bld\bld.wixproj" BindName="bld" />
<ProjectReference Include="..\cli\cli.wixproj" BindName="cli" />
<ProjectReference Include="..\dbg\dbg.wixproj" BindName="dbg" />
<ProjectReference Include="..\ide\ide.wixproj" BindName="ide" />
Expand Down
20 changes: 15 additions & 5 deletions platforms/Windows/bundle/installer.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,21 @@
<MsiProperty Name="InstallUtilities" Value="[OptionsInstallUtilities]" />
</MsiPackage>

<MsiPackage
SourceFile="!(bindpath.bld)\bld.msi"
DownloadUrl="$(BaseReleaseDownloadUrl)/{2}">
<MsiProperty Name="INSTALLROOT" Value="[InstallRoot]" />
</MsiPackage>
<?if $(INCLUDE_ASSERTS_TOOLCHAIN) == true ?>
<MsiPackage
SourceFile="!(bindpath.bld.asserts)\bld.asserts.msi"
DownloadUrl="$(BaseReleaseDownloadUrl)/{2}">
<MsiProperty Name="INSTALLROOT" Value="[InstallRoot]" />
</MsiPackage>
<?endif?>

<?if $(INCLUDE_NOASSERTS_TOOLCHAIN) == true ?>
<MsiPackage
SourceFile="!(bindpath.bld.noasserts)\bld.noasserts.msi"
DownloadUrl="$(BaseReleaseDownloadUrl)/{2}">
<MsiProperty Name="INSTALLROOT" Value="[InstallRoot]" />
</MsiPackage>
<?endif?>

<MsiPackage
SourceFile="!(bindpath.cli)\cli.msi"
Expand Down
1 change: 1 addition & 0 deletions platforms/Windows/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ MSBuild automatically imports Directory.Build.props files in your tree. We use D
| ArePackageCabsEmbedded | Always set to false to keep the .cab files external to the .msi files. This save user disk space: Burn caches packages so it can always uninstall and repair. MSI also caches packages for uninstall. If the cab is embedded, you have two copies and MSI doesn't always use its cached copy as a source for repair. With an external .cab, MSI caches only the tiny .msi file and not the (relatively huge) .cab. |
| BundleFlavor, IsBundleCompressed | BundleFlavor defaults to `online` to build an online bundle. Set by the invocation of MSBuild to build an online or offline bundle. Controls IsBundleCompressed. |
| DefineConstants | Passes a subset of MSBuild properties into the WiX build as preprocessor variables. |
| INCLUDE_ASSERTS_TOOLCHAIN,INCLUDE_NOASSERTS_TOOLCHAIN | Specifies the toolchain vaiant to include in the installer. |
| INCLUDE_SWIFT_DOCC | swift-docc is currently conditionalized out. Set it to `true` to include it. The property `SWIFT_DOCC_BUILD` defines the directory to find the artifacts. |
| INCLUDE_ANDROID_ARM_SDK, INCLUDE_ANDROID_ARM64_SDK, INCLUDE_ANDROID_X86_SDK, INCLUDE_ANDROID_x86_64_SDK, INCLUDE_WINDOWS_AMD64_SDK, INCLUDE_WINDOWS_ARM64_SDK, INCLUDE_WINDOWS_X86_SDK | The included SDKs are currently conditionalized out. Set these to `true` to include them in the bundles. |

Expand Down
37 changes: 21 additions & 16 deletions platforms/Windows/shared/shared.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -38,27 +38,32 @@
<Fragment>
<DirectoryRef Id="INSTALLROOT">
<Directory Name="Toolchains">
<Directory Id="ToolchainsVersioned" Name="$(ProductVersion)+Asserts">
<Directory Id="_usr" Name="usr">
<Directory Id="_usr_bin" Name="bin" />
<Directory Id="_usr_include" Name="include" />
<Directory Id="_usr_lib" Name="lib">
<Directory Id="_usr_lib_clang" Name="clang" />
<Directory Id="_usr_lib_swift" Name="swift">
<Directory Id="_usr_lib_swift_clang" Name="clang" />
</Directory>
</Directory>
<Directory Id="_usr_share" Name="share">
<Directory Id="_usr_share_docc" Name="docc">
<Directory Id="_usr_share_docc_render" Name="render" />
</Directory>
</Directory>
</Directory>
<Directory Id="VersionedToolchainVariant" Name="$(ProductVersion)+Asserts">
</Directory>
</Directory>
</DirectoryRef>
</Fragment>

<Fragment>
<DirectoryRef Id="VersionedToolchainVariant">
<Directory Id="_usr" Name="usr">
<Directory Id="_usr_bin" Name="bin" />
<Directory Id="_usr_include" Name="include" />
<Directory Id="_usr_lib" Name="lib">
<Directory Id="_usr_lib_clang" Name="clang" />
<Directory Id="_usr_lib_swift" Name="swift">
<Directory Id="_usr_lib_swift_clang" Name="clang" />
</Directory>
</Directory>
<Directory Id="_usr_share" Name="share">
<Directory Id="_usr_share_docc" Name="docc">
<Directory Id="_usr_share_docc_render" Name="render" />
</Directory>
</Directory>
</Directory>
</DirectoryRef>
</Fragment>

<!--
Use RemoveFolderEx to clean up the empty subdirectories Windows Installer
leaves when there are other directory siblings left behind, as happens when
Expand Down