Skip to content

Commit 3ece325

Browse files
committed
wolfssl: add arm64 support to project
1 parent 8af4143 commit 3ece325

File tree

1 file changed

+169
-1
lines changed

1 file changed

+169
-1
lines changed

windows/wolfssl.vcxproj

Lines changed: 169 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
<Configuration>Debug</Configuration>
1010
<Platform>x64</Platform>
1111
</ProjectConfiguration>
12+
<ProjectConfiguration Include="Debug|ARM64">
13+
<Configuration>Debug</Configuration>
14+
<Platform>ARM64</Platform>
15+
</ProjectConfiguration>
1216
<ProjectConfiguration Include="DLL Debug|Win32">
1317
<Configuration>DLL Debug</Configuration>
1418
<Platform>Win32</Platform>
@@ -17,6 +21,10 @@
1721
<Configuration>DLL Debug</Configuration>
1822
<Platform>x64</Platform>
1923
</ProjectConfiguration>
24+
<ProjectConfiguration Include="DLL Debug|ARM64">
25+
<Configuration>DLL Debug</Configuration>
26+
<Platform>ARM64</Platform>
27+
</ProjectConfiguration>
2028
<ProjectConfiguration Include="DLL Release|Win32">
2129
<Configuration>DLL Release</Configuration>
2230
<Platform>Win32</Platform>
@@ -25,6 +33,10 @@
2533
<Configuration>DLL Release</Configuration>
2634
<Platform>x64</Platform>
2735
</ProjectConfiguration>
36+
<ProjectConfiguration Include="DLL Release|ARM64">
37+
<Configuration>DLL Release</Configuration>
38+
<Platform>ARM64</Platform>
39+
</ProjectConfiguration>
2840
<ProjectConfiguration Include="Release|Win32">
2941
<Configuration>Release</Configuration>
3042
<Platform>Win32</Platform>
@@ -33,6 +45,10 @@
3345
<Configuration>Release</Configuration>
3446
<Platform>x64</Platform>
3547
</ProjectConfiguration>
48+
<ProjectConfiguration Include="Release|ARM64">
49+
<Configuration>Release</Configuration>
50+
<Platform>ARM64</Platform>
51+
</ProjectConfiguration>
3652
</ItemGroup>
3753
<PropertyGroup Label="Globals">
3854
<ProjectGuid>{73973223-5EE8-41CA-8E88-1D60E89A237B}</ProjectGuid>
@@ -63,6 +79,18 @@
6379
<PlatformToolset>v110</PlatformToolset>
6480
<CharacterSet>Unicode</CharacterSet>
6581
<WholeProgramOptimization>true</WholeProgramOptimization>
82+
</PropertyGroup>
83+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration">
84+
<ConfigurationType>StaticLibrary</ConfigurationType>
85+
<PlatformToolset>v110</PlatformToolset>
86+
<CharacterSet>Unicode</CharacterSet>
87+
<WholeProgramOptimization>true</WholeProgramOptimization>
88+
</PropertyGroup>
89+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|ARM64'" Label="Configuration">
90+
<ConfigurationType>DynamicLibrary</ConfigurationType>
91+
<PlatformToolset>v110</PlatformToolset>
92+
<CharacterSet>Unicode</CharacterSet>
93+
<WholeProgramOptimization>true</WholeProgramOptimization>
6694
</PropertyGroup>
6795
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
6896
<ConfigurationType>StaticLibrary</ConfigurationType>
@@ -83,6 +111,16 @@
83111
<ConfigurationType>DynamicLibrary</ConfigurationType>
84112
<PlatformToolset>v110</PlatformToolset>
85113
<CharacterSet>Unicode</CharacterSet>
114+
</PropertyGroup>
115+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration">
116+
<ConfigurationType>StaticLibrary</ConfigurationType>
117+
<PlatformToolset>v110</PlatformToolset>
118+
<CharacterSet>Unicode</CharacterSet>
119+
</PropertyGroup>
120+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|ARM64'" Label="Configuration">
121+
<ConfigurationType>DynamicLibrary</ConfigurationType>
122+
<PlatformToolset>v110</PlatformToolset>
123+
<CharacterSet>Unicode</CharacterSet>
86124
</PropertyGroup>
87125
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
88126
<ImportGroup Label="ExtensionSettings">
@@ -120,6 +158,10 @@
120158
<OutDir>$(SolutionDir)$(Configuration)\$(Platform)\</OutDir>
121159
<IntDir>$(Configuration)\$(Platform)\$(ProjectName)_obj\</IntDir>
122160
</PropertyGroup>
161+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
162+
<OutDir>$(SolutionDir)$(Configuration)\$(Platform)\</OutDir>
163+
<IntDir>$(Configuration)\$(Platform)\$(ProjectName)_obj\</IntDir>
164+
</PropertyGroup>
123165
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
124166
<OutDir>$(SolutionDir)$(Configuration)\$(Platform)\</OutDir>
125167
<IntDir>$(Configuration)\$(Platform)\$(ProjectName)_obj\</IntDir>
@@ -128,6 +170,10 @@
128170
<OutDir>$(SolutionDir)$(Configuration)\$(Platform)\</OutDir>
129171
<IntDir>$(Configuration)\$(Platform)\$(ProjectName)_obj\</IntDir>
130172
</PropertyGroup>
173+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
174+
<OutDir>$(SolutionDir)$(Configuration)\$(Platform)\</OutDir>
175+
<IntDir>$(Configuration)\$(Platform)\$(ProjectName)_obj\</IntDir>
176+
</PropertyGroup>
131177
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">
132178
<OutDir>$(SolutionDir)$(Configuration)\$(Platform)\</OutDir>
133179
<IntDir>$(Configuration)\$(Platform)\$(ProjectName)_obj\</IntDir>
@@ -136,6 +182,10 @@
136182
<OutDir>$(SolutionDir)$(Configuration)\$(Platform)\</OutDir>
137183
<IntDir>$(Configuration)\$(Platform)\$(ProjectName)_obj\</IntDir>
138184
</PropertyGroup>
185+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|ARM64'">
186+
<OutDir>$(SolutionDir)$(Configuration)\$(Platform)\</OutDir>
187+
<IntDir>$(Configuration)\$(Platform)\$(ProjectName)_obj\</IntDir>
188+
</PropertyGroup>
139189
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">
140190
<OutDir>$(SolutionDir)$(Configuration)\$(Platform)\</OutDir>
141191
<IntDir>$(Configuration)\$(Platform)\$(ProjectName)_obj\</IntDir>
@@ -144,6 +194,10 @@
144194
<OutDir>$(SolutionDir)$(Configuration)\$(Platform)\</OutDir>
145195
<IntDir>$(Configuration)\$(Platform)\$(ProjectName)_obj\</IntDir>
146196
</PropertyGroup>
197+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|ARM64'">
198+
<OutDir>$(SolutionDir)$(Configuration)\$(Platform)\</OutDir>
199+
<IntDir>$(Configuration)\$(Platform)\$(ProjectName)_obj\</IntDir>
200+
</PropertyGroup>
147201
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
148202
<ClCompile>
149203
<Optimization>Disabled</Optimization>
@@ -211,6 +265,39 @@
211265
<OptimizeReferences>false</OptimizeReferences>
212266
<GenerateDebugInformation>true</GenerateDebugInformation>
213267
</Link>
268+
</ItemDefinitionGroup>
269+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
270+
<ClCompile>
271+
<Optimization>Disabled</Optimization>
272+
<AdditionalIncludeDirectories>./;./IDE/WIN;../liboqs/build/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
273+
<PreprocessorDefinitions>WOLFSSL_MIN_RSA_BITS=2048;WOLFSSL_MIN_ECC_BITS=256;HAVE_SECURE_RENEGOTIATION;WOLFSSL_DTLS_CH_FRAG;WOLFSSL_TLS13_MIDDLEBOX_COMPAT;WOLFSSL_LIB;BUILDING_WOLFSSL;WOLFSSL_DLL;WOLFSSL_USER_SETTINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
274+
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
275+
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
276+
<PrecompiledHeader>
277+
</PrecompiledHeader>
278+
<WarningLevel>Level4</WarningLevel>
279+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
280+
<DisableSpecificWarnings>4206;4214;4706;%(DisableSpecificWarnings)</DisableSpecificWarnings>
281+
</ClCompile>
282+
</ItemDefinitionGroup>
283+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Debug|ARM64'">
284+
<ClCompile>
285+
<Optimization>Disabled</Optimization>
286+
<AdditionalIncludeDirectories>./;./IDE/WIN;../liboqs/build/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
287+
<PreprocessorDefinitions>WOLFSSL_MIN_RSA_BITS=2048;WOLFSSL_MIN_ECC_BITS=256;HAVE_SECURE_RENEGOTIATION;WOLFSSL_DTLS_CH_FRAG;WOLFSSL_TLS13_MIDDLEBOX_COMPAT;WOLFSSL_LIB;BUILDING_WOLFSSL;WOLFSSL_DLL;WOLFSSL_USER_SETTINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
288+
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
289+
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
290+
<PrecompiledHeader>
291+
</PrecompiledHeader>
292+
<WarningLevel>Level4</WarningLevel>
293+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
294+
<DisableSpecificWarnings>4206;4214;4706;%(DisableSpecificWarnings)</DisableSpecificWarnings>
295+
</ClCompile>
296+
<Link>
297+
<AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
298+
<OptimizeReferences>false</OptimizeReferences>
299+
<GenerateDebugInformation>true</GenerateDebugInformation>
300+
</Link>
214301
</ItemDefinitionGroup>
215302
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
216303
<ClCompile>
@@ -274,6 +361,38 @@
274361
<AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
275362
<GenerateDebugInformation>true</GenerateDebugInformation>
276363
</Link>
364+
</ItemDefinitionGroup>
365+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
366+
<ClCompile>
367+
<Optimization>MaxSpeed</Optimization>
368+
<IntrinsicFunctions>true</IntrinsicFunctions>
369+
<AdditionalIncludeDirectories>./;./IDE/WIN;../liboqs/build/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
370+
<PreprocessorDefinitions>WOLFSSL_MIN_RSA_BITS=2048;WOLFSSL_MIN_ECC_BITS=256;HAVE_SECURE_RENEGOTIATION;WOLFSSL_DTLS_CH_FRAG;WOLFSSL_TLS13_MIDDLEBOX_COMPAT;WOLFSSL_LIB;BUILDING_WOLFSSL;WOLFSSL_DLL;WOLFSSL_USER_SETTINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
371+
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
372+
<FunctionLevelLinking>true</FunctionLevelLinking>
373+
<PrecompiledHeader>
374+
</PrecompiledHeader>
375+
<WarningLevel>Level3</WarningLevel>
376+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
377+
</ClCompile>
378+
</ItemDefinitionGroup>
379+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL Release|ARM64'">
380+
<ClCompile>
381+
<Optimization>MaxSpeed</Optimization>
382+
<IntrinsicFunctions>true</IntrinsicFunctions>
383+
<AdditionalIncludeDirectories>./;./IDE/WIN;../liboqs/build/include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
384+
<PreprocessorDefinitions>WOLFSSL_MIN_RSA_BITS=2048;WOLFSSL_MIN_ECC_BITS=256;HAVE_SECURE_RENEGOTIATION;WOLFSSL_DTLS_CH_FRAG;WOLFSSL_TLS13_MIDDLEBOX_COMPAT;WOLFSSL_LIB;BUILDING_WOLFSSL;WOLFSSL_DLL;WOLFSSL_USER_SETTINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
385+
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
386+
<FunctionLevelLinking>true</FunctionLevelLinking>
387+
<PrecompiledHeader>
388+
</PrecompiledHeader>
389+
<WarningLevel>Level3</WarningLevel>
390+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
391+
</ClCompile>
392+
<Link>
393+
<AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
394+
<GenerateDebugInformation>true</GenerateDebugInformation>
395+
</Link>
277396
</ItemDefinitionGroup>
278397
<ItemGroup>
279398
<ClCompile Include="src\crl.c" />
@@ -299,9 +418,10 @@
299418
<ClCompile Include="wolfcrypt\src\curve25519.c" />
300419
<ClCompile Include="wolfcrypt\src\curve448.c" />
301420
<ClCompile Include="wolfcrypt\src\cpuid.c" />
421+
<ClCompile Include="wolfcrypt\src\cryptocb.c" />
302422
<ClCompile Include="wolfcrypt\src\des3.c" />
303-
<ClCompile Include="wolfcrypt\src\dh.c" />
304423
<ClCompile Include="wolfcrypt\src\dilithium.c" />
424+
<ClCompile Include="wolfcrypt\src\dh.c" />
305425
<ClCompile Include="wolfcrypt\src\dsa.c" />
306426
<ClCompile Include="wolfcrypt\src\ecc.c" />
307427
<ClCompile Include="wolfcrypt\src\ed25519.c" />
@@ -319,6 +439,8 @@
319439
<ClCompile Include="wolfcrypt\src\hmac.c" />
320440
<ClCompile Include="wolfcrypt\src\integer.c" />
321441
<ClCompile Include="wolfcrypt\src\kdf.c" />
442+
<ClCompile Include="wolfcrypt\src\wc_kyber.c" />
443+
<ClCompile Include="wolfcrypt\src\wc_kyber_poly.c" />
322444
<ClCompile Include="wolfcrypt\src\logging.c" />
323445
<ClCompile Include="wolfcrypt\src\md2.c" />
324446
<ClCompile Include="wolfcrypt\src\md4.c" />
@@ -337,6 +459,7 @@
337459
<ClCompile Include="wolfcrypt\src\sha3.c" />
338460
<ClCompile Include="wolfcrypt\src\sha512.c" />
339461
<ClCompile Include="wolfcrypt\src\signature.c" />
462+
<ClCompile Include="wolfcrypt\src\sphincs.c" />
340463
<ClCompile Include="wolfcrypt\src\sp_c32.c" />
341464
<ClCompile Include="wolfcrypt\src\sp_c64.c" />
342465
<ClCompile Include="wolfcrypt\src\sp_int.c" />
@@ -348,6 +471,7 @@
348471
<ClCompile Include="wolfcrypt\src\wc_port.c" />
349472
<ClCompile Include="wolfcrypt\src\wolfmath.c" />
350473
<ClCompile Include="wolfcrypt\src\wolfevent.c" />
474+
<ClCompile Include="wolfcrypt\src\port\liboqs\liboqs.c" />
351475
</ItemGroup>
352476
<ItemGroup>
353477
<ClInclude Include="resource.h" />
@@ -379,6 +503,48 @@
379503
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(OutDir)%(Filename).obj</Outputs>
380504
<Outputs Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">$(IntDir)%(Filename).obj</Outputs>
381505
</CustomBuild>
506+
<CustomBuild Include="wolfcrypt\src\aes_xts_asm.asm">
507+
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</ExcludedFromBuild>
508+
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">false</ExcludedFromBuild>
509+
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">ml64.exe /c /Zi /Fo"$(OutDir)%(Filename).obj" %(Identity)</Command>
510+
<Command Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">ml64.exe /c /Zi /Fo"$(IntDir)%(Filename).obj" %(Identity)</Command>
511+
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(OutDir)%(Filename).obj</Outputs>
512+
<Outputs Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">$(IntDir)%(Filename).obj</Outputs>
513+
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</ExcludedFromBuild>
514+
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">false</ExcludedFromBuild>
515+
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">ml64.exe /c /Zi /Fo"$(OutDir)%(Filename).obj" %(Identity)</Command>
516+
<Command Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">ml64.exe /c /Zi /Fo"$(IntDir)%(Filename).obj" %(Identity)</Command>
517+
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(OutDir)%(Filename).obj</Outputs>
518+
<Outputs Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">$(IntDir)%(Filename).obj</Outputs>
519+
</CustomBuild>
520+
<CustomBuild Include="wolfcrypt\src\chacha_asm.asm">
521+
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</ExcludedFromBuild>
522+
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">false</ExcludedFromBuild>
523+
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">ml64.exe /c /Zi /Fo"$(OutDir)%(Filename).obj" %(Identity)</Command>
524+
<Command Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">ml64.exe /c /Zi /Fo"$(IntDir)%(Filename).obj" %(Identity)</Command>
525+
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(OutDir)%(Filename).obj</Outputs>
526+
<Outputs Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">$(IntDir)%(Filename).obj</Outputs>
527+
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</ExcludedFromBuild>
528+
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">false</ExcludedFromBuild>
529+
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">ml64.exe /c /Zi /Fo"$(OutDir)%(Filename).obj" %(Identity)</Command>
530+
<Command Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">ml64.exe /c /Zi /Fo"$(IntDir)%(Filename).obj" %(Identity)</Command>
531+
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(OutDir)%(Filename).obj</Outputs>
532+
<Outputs Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">$(IntDir)%(Filename).obj</Outputs>
533+
</CustomBuild>
534+
<CustomBuild Include="wolfcrypt\src\poly1305_asm.asm">
535+
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</ExcludedFromBuild>
536+
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">false</ExcludedFromBuild>
537+
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">ml64.exe /c /Zi /Fo"$(OutDir)%(Filename).obj" %(Identity)</Command>
538+
<Command Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">ml64.exe /c /Zi /Fo"$(IntDir)%(Filename).obj" %(Identity)</Command>
539+
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(OutDir)%(Filename).obj</Outputs>
540+
<Outputs Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">$(IntDir)%(Filename).obj</Outputs>
541+
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</ExcludedFromBuild>
542+
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">false</ExcludedFromBuild>
543+
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">ml64.exe /c /Zi /Fo"$(OutDir)%(Filename).obj" %(Identity)</Command>
544+
<Command Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">ml64.exe /c /Zi /Fo"$(IntDir)%(Filename).obj" %(Identity)</Command>
545+
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(OutDir)%(Filename).obj</Outputs>
546+
<Outputs Condition="'$(Configuration)|$(Platform)'=='DLL Release|x64'">$(IntDir)%(Filename).obj</Outputs>
547+
</CustomBuild>
382548
<CustomBuild Include="wolfcrypt\src\sp_x86_64_asm.asm">
383549
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</ExcludedFromBuild>
384550
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DLL Debug|x64'">false</ExcludedFromBuild>
@@ -401,6 +567,8 @@
401567
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
402568
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
403569
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
570+
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">true</ExcludedFromBuild>
571+
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">true</ExcludedFromBuild>
404572
</ResourceCompile>
405573
</ItemGroup>
406574
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />

0 commit comments

Comments
 (0)