diff options
author | Bob Arnson <bob@firegiant.com> | 2020-12-26 22:15:06 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-01-19 15:50:11 -0600 |
commit | a563fb99daca852422d61ae8599a3dc32fa1bfe6 (patch) | |
tree | c9178a86bf56ee999145da1c5fb6aec186411bc7 /src/stub | |
parent | a5b86b987bb5a6fbcdb191bbe8b51a621140b4e6 (diff) | |
download | wix-a563fb99daca852422d61ae8599a3dc32fa1bfe6.tar.gz wix-a563fb99daca852422d61ae8599a3dc32fa1bfe6.tar.bz2 wix-a563fb99daca852422d61ae8599a3dc32fa1bfe6.zip |
First steps on Burn for x64 and ARM64
Diffstat (limited to 'src/stub')
-rw-r--r-- | src/stub/WixToolset.Burn.nuspec | 4 | ||||
-rw-r--r-- | src/stub/stub.vcxproj | 8 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/stub/WixToolset.Burn.nuspec b/src/stub/WixToolset.Burn.nuspec index 35392523..f314a8a4 100644 --- a/src/stub/WixToolset.Burn.nuspec +++ b/src/stub/WixToolset.Burn.nuspec | |||
@@ -16,5 +16,9 @@ | |||
16 | <file src="$projectFolder$$id$.props" target="buildTransitive" /> | 16 | <file src="$projectFolder$$id$.props" target="buildTransitive" /> |
17 | <file src="Win32\burn.exe" target="tools\x86" /> | 17 | <file src="Win32\burn.exe" target="tools\x86" /> |
18 | <file src="Win32\burn.pdb" target="tools\x86" /> | 18 | <file src="Win32\burn.pdb" target="tools\x86" /> |
19 | <file src="x64\burn.exe" target="tools\x64" /> | ||
20 | <file src="x64\burn.pdb" target="tools\x64" /> | ||
21 | <file src="arm64\burn.exe" target="tools\arm64" /> | ||
22 | <file src="arm64\burn.pdb" target="tools\arm64" /> | ||
19 | </files> | 23 | </files> |
20 | </package> | 24 | </package> |
diff --git a/src/stub/stub.vcxproj b/src/stub/stub.vcxproj index 082b80e5..a8fbdfeb 100644 --- a/src/stub/stub.vcxproj +++ b/src/stub/stub.vcxproj | |||
@@ -24,6 +24,14 @@ | |||
24 | <Configuration>Release</Configuration> | 24 | <Configuration>Release</Configuration> |
25 | <Platform>x64</Platform> | 25 | <Platform>x64</Platform> |
26 | </ProjectConfiguration> | 26 | </ProjectConfiguration> |
27 | <ProjectConfiguration Include="Debug|ARM64"> | ||
28 | <Configuration>Debug</Configuration> | ||
29 | <Platform>ARM64</Platform> | ||
30 | </ProjectConfiguration> | ||
31 | <ProjectConfiguration Include="Release|ARM64"> | ||
32 | <Configuration>Release</Configuration> | ||
33 | <Platform>ARM64</Platform> | ||
34 | </ProjectConfiguration> | ||
27 | </ItemGroup> | 35 | </ItemGroup> |
28 | 36 | ||
29 | <PropertyGroup Label="Globals"> | 37 | <PropertyGroup Label="Globals"> |