diff options
author | Bob Arnson <bob@firegiant.com> | 2021-06-06 23:36:28 -0400 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2021-06-28 20:03:09 -0400 |
commit | d53045b4903d28bf18fd1291d0fa71a0ff200c41 (patch) | |
tree | 7c94861fb55dc444a1957cb498aa4bdff7e0cc68 /src/libs/wcautil | |
parent | df80238531f76724d2d3e9f4a92b0fd691cf8526 (diff) | |
download | wix-d53045b4903d28bf18fd1291d0fa71a0ff200c41.tar.gz wix-d53045b4903d28bf18fd1291d0fa71a0ff200c41.tar.bz2 wix-d53045b4903d28bf18fd1291d0fa71a0ff200c41.zip |
Use traversal projects to build libs in parallel.
Diffstat (limited to 'src/libs/wcautil')
-rw-r--r-- | src/libs/wcautil/wcautil.proj | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/libs/wcautil/wcautil.proj b/src/libs/wcautil/wcautil.proj new file mode 100644 index 00000000..839c63a4 --- /dev/null +++ b/src/libs/wcautil/wcautil.proj | |||
@@ -0,0 +1,16 @@ | |||
1 | <Project Sdk="Microsoft.Build.Traversal"> | ||
2 | <ItemGroup> | ||
3 | <ProjectReference Include="WixToolset.WcaUtil\wcautil.vcxproj" Properties="Platform=x86;PlatformToolset=v140" /> | ||
4 | <ProjectReference Include="WixToolset.WcaUtil\wcautil.vcxproj" Properties="Platform=x64;PlatformToolset=v140" /> | ||
5 | |||
6 | <ProjectReference Include="WixToolset.WcaUtil\wcautil.vcxproj" Properties="Platform=x86;PlatformToolset=v141" /> | ||
7 | <ProjectReference Include="WixToolset.WcaUtil\wcautil.vcxproj" Properties="Platform=x64;PlatformToolset=v141" /> | ||
8 | <ProjectReference Include="WixToolset.WcaUtil\wcautil.vcxproj" Properties="Platform=ARM64;PlatformToolset=v141" /> | ||
9 | |||
10 | <ProjectReference Include="WixToolset.WcaUtil\wcautil.vcxproj" Properties="Platform=x86;PlatformToolset=v142" /> | ||
11 | <ProjectReference Include="WixToolset.WcaUtil\wcautil.vcxproj" Properties="Platform=x64;PlatformToolset=v142" /> | ||
12 | <ProjectReference Include="WixToolset.WcaUtil\wcautil.vcxproj" Properties="Platform=ARM64;PlatformToolset=v142" /> | ||
13 | |||
14 | <ProjectReference Include="WixToolset.WcaUtil\wcautil.vcxproj" Targets="PackNative" /> | ||
15 | </ItemGroup> | ||
16 | </Project> | ||