diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-12-09 12:51:21 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-12-09 13:33:18 -0600 |
commit | b9ba35486245a65cd8e376cc7a808f6fa7d41682 (patch) | |
tree | 93304a7be837c3c6ec32c46a7d04ecf580e67407 /src/Samples | |
parent | 70e370b4494a87cbbe234130882cad4a1021f82a (diff) | |
download | wix-b9ba35486245a65cd8e376cc7a808f6fa7d41682.tar.gz wix-b9ba35486245a65cd8e376cc7a808f6fa7d41682.tar.bz2 wix-b9ba35486245a65cd8e376cc7a808f6fa7d41682.zip |
WIXFEAT:6209 - Add x64 and ARM64 versions of built-in BAs.
Diffstat (limited to 'src/Samples')
-rw-r--r-- | src/Samples/bafunctions/bafunctions.vcxproj | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Samples/bafunctions/bafunctions.vcxproj b/src/Samples/bafunctions/bafunctions.vcxproj index 9e0aa581..755d0ca6 100644 --- a/src/Samples/bafunctions/bafunctions.vcxproj +++ b/src/Samples/bafunctions/bafunctions.vcxproj | |||
@@ -7,6 +7,14 @@ | |||
7 | <Import Project="..\..\..\packages\WixToolset.DUtil.4.0.56\build\WixToolset.DUtil.props" Condition="Exists('..\..\..\packages\WixToolset.DUtil.4.0.56\build\WixToolset.DUtil.props')" /> | 7 | <Import Project="..\..\..\packages\WixToolset.DUtil.4.0.56\build\WixToolset.DUtil.props" Condition="Exists('..\..\..\packages\WixToolset.DUtil.4.0.56\build\WixToolset.DUtil.props')" /> |
8 | 8 | ||
9 | <ItemGroup Label="ProjectConfigurations"> | 9 | <ItemGroup Label="ProjectConfigurations"> |
10 | <ProjectConfiguration Include="Debug|ARM64"> | ||
11 | <Configuration>Debug</Configuration> | ||
12 | <Platform>ARM64</Platform> | ||
13 | </ProjectConfiguration> | ||
14 | <ProjectConfiguration Include="Release|ARM64"> | ||
15 | <Configuration>Release</Configuration> | ||
16 | <Platform>ARM64</Platform> | ||
17 | </ProjectConfiguration> | ||
10 | <ProjectConfiguration Include="Debug|Win32"> | 18 | <ProjectConfiguration Include="Debug|Win32"> |
11 | <Configuration>Debug</Configuration> | 19 | <Configuration>Debug</Configuration> |
12 | <Platform>Win32</Platform> | 20 | <Platform>Win32</Platform> |
@@ -15,6 +23,14 @@ | |||
15 | <Configuration>Release</Configuration> | 23 | <Configuration>Release</Configuration> |
16 | <Platform>Win32</Platform> | 24 | <Platform>Win32</Platform> |
17 | </ProjectConfiguration> | 25 | </ProjectConfiguration> |
26 | <ProjectConfiguration Include="Debug|x64"> | ||
27 | <Configuration>Debug</Configuration> | ||
28 | <Platform>x64</Platform> | ||
29 | </ProjectConfiguration> | ||
30 | <ProjectConfiguration Include="Release|x64"> | ||
31 | <Configuration>Release</Configuration> | ||
32 | <Platform>x64</Platform> | ||
33 | </ProjectConfiguration> | ||
18 | </ItemGroup> | 34 | </ItemGroup> |
19 | 35 | ||
20 | <PropertyGroup Label="Globals"> | 36 | <PropertyGroup Label="Globals"> |