Skip to content

Commit 2659ea6

Browse files
committed
Add ARM64
1 parent 213d9cb commit 2659ea6

File tree

3 files changed

+170
-0
lines changed

3 files changed

+170
-0
lines changed

IExplorerCommand_CppWinRT/IExplorerCommand_CppWinRT.vcxproj

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,18 @@
22
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="..\packages\Microsoft.Windows.CppWinRT.2.0.240405.15\build\native\Microsoft.Windows.CppWinRT.props" Condition="Exists('..\packages\Microsoft.Windows.CppWinRT.2.0.240405.15\build\native\Microsoft.Windows.CppWinRT.props')" />
44
<ItemGroup Label="ProjectConfigurations">
5+
<ProjectConfiguration Include="Debug|ARM64">
6+
<Configuration>Debug</Configuration>
7+
<Platform>ARM64</Platform>
8+
</ProjectConfiguration>
59
<ProjectConfiguration Include="Debug|Win32">
610
<Configuration>Debug</Configuration>
711
<Platform>Win32</Platform>
812
</ProjectConfiguration>
13+
<ProjectConfiguration Include="Release|ARM64">
14+
<Configuration>Release</Configuration>
15+
<Platform>ARM64</Platform>
16+
</ProjectConfiguration>
917
<ProjectConfiguration Include="Release|Win32">
1018
<Configuration>Release</Configuration>
1119
<Platform>Win32</Platform>
@@ -47,6 +55,12 @@
4755
<PlatformToolset>v143</PlatformToolset>
4856
<CharacterSet>Unicode</CharacterSet>
4957
</PropertyGroup>
58+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration">
59+
<ConfigurationType>DynamicLibrary</ConfigurationType>
60+
<UseDebugLibraries>true</UseDebugLibraries>
61+
<PlatformToolset>v143</PlatformToolset>
62+
<CharacterSet>Unicode</CharacterSet>
63+
</PropertyGroup>
5064
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
5165
<ConfigurationType>DynamicLibrary</ConfigurationType>
5266
<UseDebugLibraries>false</UseDebugLibraries>
@@ -55,6 +69,14 @@
5569
<CharacterSet>Unicode</CharacterSet>
5670
<SpectreMitigation>Spectre</SpectreMitigation>
5771
</PropertyGroup>
72+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration">
73+
<ConfigurationType>DynamicLibrary</ConfigurationType>
74+
<UseDebugLibraries>false</UseDebugLibraries>
75+
<PlatformToolset>v143</PlatformToolset>
76+
<WholeProgramOptimization>true</WholeProgramOptimization>
77+
<CharacterSet>Unicode</CharacterSet>
78+
<SpectreMitigation>Spectre</SpectreMitigation>
79+
</PropertyGroup>
5880
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
5981
<ImportGroup Label="ExtensionSettings">
6082
</ImportGroup>
@@ -69,9 +91,15 @@
6991
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
7092
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
7193
</ImportGroup>
94+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="PropertySheets">
95+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
96+
</ImportGroup>
7297
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
7398
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
7499
</ImportGroup>
100+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="PropertySheets">
101+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
102+
</ImportGroup>
75103
<PropertyGroup Label="UserMacros" />
76104
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
77105
<RunCodeAnalysis>true</RunCodeAnalysis>
@@ -82,9 +110,15 @@
82110
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
83111
<RunCodeAnalysis>true</RunCodeAnalysis>
84112
</PropertyGroup>
113+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
114+
<RunCodeAnalysis>true</RunCodeAnalysis>
115+
</PropertyGroup>
85116
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
86117
<RunCodeAnalysis>true</RunCodeAnalysis>
87118
</PropertyGroup>
119+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
120+
<RunCodeAnalysis>true</RunCodeAnalysis>
121+
</PropertyGroup>
88122
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
89123
<ClCompile>
90124
<WarningLevel>Level4</WarningLevel>
@@ -145,6 +179,23 @@
145179
<ModuleDefinitionFile>Source.def</ModuleDefinitionFile>
146180
</Link>
147181
</ItemDefinitionGroup>
182+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
183+
<ClCompile>
184+
<WarningLevel>Level4</WarningLevel>
185+
<SDLCheck>true</SDLCheck>
186+
<PreprocessorDefinitions>_DEBUG;IEXPLORERCOMMANDCPPWINRT_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
187+
<ConformanceMode>true</ConformanceMode>
188+
<PrecompiledHeader>Use</PrecompiledHeader>
189+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
190+
<LanguageStandard>stdcpp20</LanguageStandard>
191+
</ClCompile>
192+
<Link>
193+
<SubSystem>Windows</SubSystem>
194+
<GenerateDebugInformation>true</GenerateDebugInformation>
195+
<EnableUAC>false</EnableUAC>
196+
<ModuleDefinitionFile>Source.def</ModuleDefinitionFile>
197+
</Link>
198+
</ItemDefinitionGroup>
148199
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
149200
<ClCompile>
150201
<WarningLevel>Level4</WarningLevel>
@@ -172,6 +223,33 @@
172223
<CETCompat>true</CETCompat>
173224
</Link>
174225
</ItemDefinitionGroup>
226+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
227+
<ClCompile>
228+
<WarningLevel>Level4</WarningLevel>
229+
<FunctionLevelLinking>true</FunctionLevelLinking>
230+
<IntrinsicFunctions>true</IntrinsicFunctions>
231+
<SDLCheck>true</SDLCheck>
232+
<PreprocessorDefinitions>NDEBUG;IEXPLORERCOMMANDCPPWINRT_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
233+
<ConformanceMode>true</ConformanceMode>
234+
<PrecompiledHeader>Use</PrecompiledHeader>
235+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
236+
<LanguageStandard>stdcpp20</LanguageStandard>
237+
<ControlFlowGuard>Guard</ControlFlowGuard>
238+
<GuardEHContMetadata>true</GuardEHContMetadata>
239+
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
240+
<GuardSignedReturns>true</GuardSignedReturns>
241+
</ClCompile>
242+
<Link>
243+
<SubSystem>Windows</SubSystem>
244+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
245+
<OptimizeReferences>true</OptimizeReferences>
246+
<GenerateDebugInformation>true</GenerateDebugInformation>
247+
<EnableUAC>false</EnableUAC>
248+
<ModuleDefinitionFile>Source.def</ModuleDefinitionFile>
249+
<AdditionalOptions>/defaultlib:ucrt.lib /PDBALTPATH:%_PDB% %(AdditionalOptions)</AdditionalOptions>
250+
<IgnoreSpecificDefaultLibraries>libucrt.lib;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
251+
</Link>
252+
</ItemDefinitionGroup>
175253
<ItemGroup>
176254
<ClInclude Include="framework.h" />
177255
<ClInclude Include="pch.h" />
@@ -180,9 +258,11 @@
180258
<ClCompile Include="dllmain.cpp" />
181259
<ClCompile Include="pch.cpp">
182260
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader>
261+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">Create</PrecompiledHeader>
183262
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
184263
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
185264
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
265+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">Create</PrecompiledHeader>
186266
</ClCompile>
187267
</ItemGroup>
188268
<ItemGroup>

IExplorerCommand_Examples.sln

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,34 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "IExplorerCommand_WRL", "IEx
99
EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12+
Debug|ARM64 = Debug|ARM64
1213
Debug|x64 = Debug|x64
1314
Debug|x86 = Debug|x86
15+
Release|ARM64 = Release|ARM64
1416
Release|x64 = Release|x64
1517
Release|x86 = Release|x86
1618
EndGlobalSection
1719
GlobalSection(ProjectConfigurationPlatforms) = postSolution
20+
{05EDC6F7-E5BD-46DD-A232-8E3B5D60E2A1}.Debug|ARM64.ActiveCfg = Debug|ARM64
21+
{05EDC6F7-E5BD-46DD-A232-8E3B5D60E2A1}.Debug|ARM64.Build.0 = Debug|ARM64
1822
{05EDC6F7-E5BD-46DD-A232-8E3B5D60E2A1}.Debug|x64.ActiveCfg = Debug|x64
1923
{05EDC6F7-E5BD-46DD-A232-8E3B5D60E2A1}.Debug|x64.Build.0 = Debug|x64
2024
{05EDC6F7-E5BD-46DD-A232-8E3B5D60E2A1}.Debug|x86.ActiveCfg = Debug|Win32
2125
{05EDC6F7-E5BD-46DD-A232-8E3B5D60E2A1}.Debug|x86.Build.0 = Debug|Win32
26+
{05EDC6F7-E5BD-46DD-A232-8E3B5D60E2A1}.Release|ARM64.ActiveCfg = Release|ARM64
27+
{05EDC6F7-E5BD-46DD-A232-8E3B5D60E2A1}.Release|ARM64.Build.0 = Release|ARM64
2228
{05EDC6F7-E5BD-46DD-A232-8E3B5D60E2A1}.Release|x64.ActiveCfg = Release|x64
2329
{05EDC6F7-E5BD-46DD-A232-8E3B5D60E2A1}.Release|x64.Build.0 = Release|x64
2430
{05EDC6F7-E5BD-46DD-A232-8E3B5D60E2A1}.Release|x86.ActiveCfg = Release|Win32
2531
{05EDC6F7-E5BD-46DD-A232-8E3B5D60E2A1}.Release|x86.Build.0 = Release|Win32
32+
{7D4326F3-06AE-4750-8313-597EBE7BFB88}.Debug|ARM64.ActiveCfg = Debug|ARM64
33+
{7D4326F3-06AE-4750-8313-597EBE7BFB88}.Debug|ARM64.Build.0 = Debug|ARM64
2634
{7D4326F3-06AE-4750-8313-597EBE7BFB88}.Debug|x64.ActiveCfg = Debug|x64
2735
{7D4326F3-06AE-4750-8313-597EBE7BFB88}.Debug|x64.Build.0 = Debug|x64
2836
{7D4326F3-06AE-4750-8313-597EBE7BFB88}.Debug|x86.ActiveCfg = Debug|Win32
2937
{7D4326F3-06AE-4750-8313-597EBE7BFB88}.Debug|x86.Build.0 = Debug|Win32
38+
{7D4326F3-06AE-4750-8313-597EBE7BFB88}.Release|ARM64.ActiveCfg = Release|ARM64
39+
{7D4326F3-06AE-4750-8313-597EBE7BFB88}.Release|ARM64.Build.0 = Release|ARM64
3040
{7D4326F3-06AE-4750-8313-597EBE7BFB88}.Release|x64.ActiveCfg = Release|x64
3141
{7D4326F3-06AE-4750-8313-597EBE7BFB88}.Release|x64.Build.0 = Release|x64
3242
{7D4326F3-06AE-4750-8313-597EBE7BFB88}.Release|x86.ActiveCfg = Release|Win32

IExplorerCommand_WRL/IExplorerCommand_WRL.vcxproj

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup Label="ProjectConfigurations">
4+
<ProjectConfiguration Include="Debug|ARM64">
5+
<Configuration>Debug</Configuration>
6+
<Platform>ARM64</Platform>
7+
</ProjectConfiguration>
48
<ProjectConfiguration Include="Debug|Win32">
59
<Configuration>Debug</Configuration>
610
<Platform>Win32</Platform>
711
</ProjectConfiguration>
12+
<ProjectConfiguration Include="Release|ARM64">
13+
<Configuration>Release</Configuration>
14+
<Platform>ARM64</Platform>
15+
</ProjectConfiguration>
816
<ProjectConfiguration Include="Release|Win32">
917
<Configuration>Release</Configuration>
1018
<Platform>Win32</Platform>
@@ -46,6 +54,12 @@
4654
<PlatformToolset>v143</PlatformToolset>
4755
<CharacterSet>Unicode</CharacterSet>
4856
</PropertyGroup>
57+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration">
58+
<ConfigurationType>DynamicLibrary</ConfigurationType>
59+
<UseDebugLibraries>true</UseDebugLibraries>
60+
<PlatformToolset>v143</PlatformToolset>
61+
<CharacterSet>Unicode</CharacterSet>
62+
</PropertyGroup>
4963
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
5064
<ConfigurationType>DynamicLibrary</ConfigurationType>
5165
<UseDebugLibraries>false</UseDebugLibraries>
@@ -54,6 +68,14 @@
5468
<CharacterSet>Unicode</CharacterSet>
5569
<SpectreMitigation>Spectre</SpectreMitigation>
5670
</PropertyGroup>
71+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration">
72+
<ConfigurationType>DynamicLibrary</ConfigurationType>
73+
<UseDebugLibraries>false</UseDebugLibraries>
74+
<PlatformToolset>v143</PlatformToolset>
75+
<WholeProgramOptimization>true</WholeProgramOptimization>
76+
<CharacterSet>Unicode</CharacterSet>
77+
<SpectreMitigation>Spectre</SpectreMitigation>
78+
</PropertyGroup>
5779
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
5880
<ImportGroup Label="ExtensionSettings">
5981
</ImportGroup>
@@ -68,9 +90,15 @@
6890
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
6991
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
7092
</ImportGroup>
93+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="PropertySheets">
94+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
95+
</ImportGroup>
7196
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
7297
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
7398
</ImportGroup>
99+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="PropertySheets">
100+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
101+
</ImportGroup>
74102
<PropertyGroup Label="UserMacros" />
75103
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
76104
<RunCodeAnalysis>true</RunCodeAnalysis>
@@ -81,9 +109,15 @@
81109
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
82110
<RunCodeAnalysis>true</RunCodeAnalysis>
83111
</PropertyGroup>
112+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
113+
<RunCodeAnalysis>true</RunCodeAnalysis>
114+
</PropertyGroup>
84115
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
85116
<RunCodeAnalysis>true</RunCodeAnalysis>
86117
</PropertyGroup>
118+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
119+
<RunCodeAnalysis>true</RunCodeAnalysis>
120+
</PropertyGroup>
87121
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
88122
<ClCompile>
89123
<WarningLevel>Level4</WarningLevel>
@@ -144,6 +178,23 @@
144178
<ModuleDefinitionFile>Source.def</ModuleDefinitionFile>
145179
</Link>
146180
</ItemDefinitionGroup>
181+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
182+
<ClCompile>
183+
<WarningLevel>Level4</WarningLevel>
184+
<SDLCheck>true</SDLCheck>
185+
<PreprocessorDefinitions>_DEBUG;IEXPLORERCOMMANDWRL_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
186+
<ConformanceMode>true</ConformanceMode>
187+
<PrecompiledHeader>Use</PrecompiledHeader>
188+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
189+
<LanguageStandard>stdcpp20</LanguageStandard>
190+
</ClCompile>
191+
<Link>
192+
<SubSystem>Windows</SubSystem>
193+
<GenerateDebugInformation>true</GenerateDebugInformation>
194+
<EnableUAC>false</EnableUAC>
195+
<ModuleDefinitionFile>Source.def</ModuleDefinitionFile>
196+
</Link>
197+
</ItemDefinitionGroup>
147198
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
148199
<ClCompile>
149200
<WarningLevel>Level4</WarningLevel>
@@ -171,6 +222,33 @@
171222
<AdditionalOptions>/defaultlib:ucrt.lib /PDBALTPATH:%_PDB% %(AdditionalOptions)</AdditionalOptions>
172223
</Link>
173224
</ItemDefinitionGroup>
225+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
226+
<ClCompile>
227+
<WarningLevel>Level4</WarningLevel>
228+
<FunctionLevelLinking>true</FunctionLevelLinking>
229+
<IntrinsicFunctions>true</IntrinsicFunctions>
230+
<SDLCheck>true</SDLCheck>
231+
<PreprocessorDefinitions>NDEBUG;IEXPLORERCOMMANDWRL_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
232+
<ConformanceMode>true</ConformanceMode>
233+
<PrecompiledHeader>Use</PrecompiledHeader>
234+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
235+
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
236+
<ControlFlowGuard>Guard</ControlFlowGuard>
237+
<GuardEHContMetadata>true</GuardEHContMetadata>
238+
<LanguageStandard>stdcpp20</LanguageStandard>
239+
<GuardSignedReturns>true</GuardSignedReturns>
240+
</ClCompile>
241+
<Link>
242+
<SubSystem>Windows</SubSystem>
243+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
244+
<OptimizeReferences>true</OptimizeReferences>
245+
<GenerateDebugInformation>true</GenerateDebugInformation>
246+
<EnableUAC>false</EnableUAC>
247+
<IgnoreSpecificDefaultLibraries>libucrt.lib;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
248+
<ModuleDefinitionFile>Source.def</ModuleDefinitionFile>
249+
<AdditionalOptions>/defaultlib:ucrt.lib /PDBALTPATH:%_PDB% %(AdditionalOptions)</AdditionalOptions>
250+
</Link>
251+
</ItemDefinitionGroup>
174252
<ItemGroup>
175253
<ClInclude Include="framework.h" />
176254
<ClInclude Include="pch.h" />
@@ -179,9 +257,11 @@
179257
<ClCompile Include="dllmain.cpp" />
180258
<ClCompile Include="pch.cpp">
181259
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader>
260+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">Create</PrecompiledHeader>
182261
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
183262
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
184263
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
264+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">Create</PrecompiledHeader>
185265
</ClCompile>
186266
</ItemGroup>
187267
<ItemGroup>

0 commit comments

Comments
 (0)