Skip to content

Commit 617b682

Browse files
authored
add arm64
1 parent 7480cea commit 617b682

File tree

1 file changed

+64
-1
lines changed

1 file changed

+64
-1
lines changed

SMTC.vcxproj

Lines changed: 64 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@
1717
<Configuration>Release</Configuration>
1818
<Platform>x64</Platform>
1919
</ProjectConfiguration>
20+
<ProjectConfiguration Include="Debug|ARM64">
21+
<Configuration>Debug</Configuration>
22+
<Platform>ARM64</Platform>
23+
</ProjectConfiguration>
24+
<ProjectConfiguration Include="Release|ARM64">
25+
<Configuration>Release</Configuration>
26+
<Platform>ARM64</Platform>
27+
</ProjectConfiguration>
2028
</ItemGroup>
2129
<PropertyGroup Label="Globals">
2230
<VCProjectVersion>17.0</VCProjectVersion>
@@ -52,6 +60,19 @@
5260
<WholeProgramOptimization>true</WholeProgramOptimization>
5361
<CharacterSet>Unicode</CharacterSet>
5462
</PropertyGroup>
63+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration">
64+
<ConfigurationType>DynamicLibrary</ConfigurationType>
65+
<UseDebugLibraries>true</UseDebugLibraries>
66+
<PlatformToolset>v143</PlatformToolset>
67+
<CharacterSet>Unicode</CharacterSet>
68+
</PropertyGroup>
69+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration">
70+
<ConfigurationType>DynamicLibrary</ConfigurationType>
71+
<UseDebugLibraries>false</UseDebugLibraries>
72+
<PlatformToolset>v143</PlatformToolset>
73+
<WholeProgramOptimization>true</WholeProgramOptimization>
74+
<CharacterSet>Unicode</CharacterSet>
75+
</PropertyGroup>
5576
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
5677
<ImportGroup Label="ExtensionSettings">
5778
</ImportGroup>
@@ -69,6 +90,12 @@
6990
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
7091
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
7192
</ImportGroup>
93+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
94+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
95+
</ImportGroup>
96+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
97+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
98+
</ImportGroup>
7299
<PropertyGroup Label="UserMacros" />
73100
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
74101
<ClCompile>
@@ -140,6 +167,42 @@
140167
<EnableUAC>false</EnableUAC>
141168
</Link>
142169
</ItemDefinitionGroup>
170+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
171+
<ClCompile>
172+
<WarningLevel>Level3</WarningLevel>
173+
<SDLCheck>true</SDLCheck>
174+
<PreprocessorDefinitions>_DEBUG;SMTC_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
175+
<ConformanceMode>true</ConformanceMode>
176+
<PrecompiledHeader>Use</PrecompiledHeader>
177+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
178+
<LanguageStandard>stdcpp20</LanguageStandard>
179+
</ClCompile>
180+
<Link>
181+
<SubSystem>Windows</SubSystem>
182+
<GenerateDebugInformation>true</GenerateDebugInformation>
183+
<EnableUAC>false</EnableUAC>
184+
</Link>
185+
</ItemDefinitionGroup>
186+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
187+
<ClCompile>
188+
<WarningLevel>Level3</WarningLevel>
189+
<FunctionLevelLinking>true</FunctionLevelLinking>
190+
<IntrinsicFunctions>true</IntrinsicFunctions>
191+
<SDLCheck>true</SDLCheck>
192+
<PreprocessorDefinitions>NDEBUG;SMTC_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
193+
<ConformanceMode>true</ConformanceMode>
194+
<PrecompiledHeader>Use</PrecompiledHeader>
195+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
196+
<LanguageStandard>stdcpp20</LanguageStandard>
197+
</ClCompile>
198+
<Link>
199+
<SubSystem>Windows</SubSystem>
200+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
201+
<OptimizeReferences>true</OptimizeReferences>
202+
<GenerateDebugInformation>true</GenerateDebugInformation>
203+
<EnableUAC>false</EnableUAC>
204+
</Link>
205+
</ItemDefinitionGroup>
143206
<ItemGroup>
144207
<ClInclude Include="framework.h" />
145208
<ClInclude Include="pch.h" />
@@ -157,4 +220,4 @@
157220
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
158221
<ImportGroup Label="ExtensionTargets">
159222
</ImportGroup>
160-
</Project>
223+
</Project>

0 commit comments

Comments
 (0)