Skip to content
Closed
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
2 changes: 2 additions & 0 deletions platforms/Windows/toolchain-amd64.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@
</Directory>
</Directory>
<Directory Id="_usr_lib_swift" Name="swift">
<Directory Id="_usr_lib_swift_clang" Name="clang">
</Directory>
<Directory Id="_usr_lib_swift_migrator" Name="migrator">
</Directory>
<Directory Id="_usr_lib_swift_shims" Name="shims">
Expand Down
2 changes: 2 additions & 0 deletions platforms/Windows/toolchain-arm64.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@
</Directory>
</Directory>
<Directory Id="_usr_lib_swift" Name="swift">
<Directory Id="_usr_lib_swift_clang" Name="clang">
</Directory>
<Directory Id="_usr_lib_swift_migrator" Name="migrator">
</Directory>
<Directory Id="_usr_lib_swift_shims" Name="shims">
Expand Down
7 changes: 6 additions & 1 deletion platforms/Windows/toolchain.wixproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</Target>

<PropertyGroup>
<DefineConstants>ProductVersion=$(ProductVersion);DEVTOOLS_ROOT=$(DEVTOOLS_ROOT);TOOLCHAIN_ROOT=$(TOOLCHAIN_ROOT);TOOLCHAIN_ROOT_USR_LIB_CLANG=$(TOOLCHAIN_ROOT)\usr\lib\clang;$(INCLUDE_DEBUG_INFO)</DefineConstants>
<DefineConstants>ProductVersion=$(ProductVersion);DEVTOOLS_ROOT=$(DEVTOOLS_ROOT);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;$(INCLUDE_DEBUG_INFO)</DefineConstants>
<HarvestDirectoryAutogenerateGuids>false</HarvestDirectoryAutogenerateGuids>
<HarvestDirectoryGenerateGuidsNow>true</HarvestDirectoryGenerateGuidsNow>
<HarvestDirectoryNoLogo>true</HarvestDirectoryNoLogo>
Expand All @@ -51,6 +51,11 @@
<DirectoryRefId>_usr_lib_clang</DirectoryRefId>
<PreprocessorVariable>var.TOOLCHAIN_ROOT_USR_LIB_CLANG</PreprocessorVariable>
</HarvestDirectory>
<HarvestDirectory Include="$(TOOLCHAIN_ROOT)\usr\lib\swift\clang">
<ComponentGroupName>ClangResourcesForSwift</ComponentGroupName>
<DirectoryRefId>_usr_lib_swift_clang</DirectoryRefId>
<PreprocessorVariable>var.TOOLCHAIN_ROOT_USR_LIB_SWIFT_CLANG</PreprocessorVariable>
</HarvestDirectory>
</ItemGroup>
</Target>

Expand Down