|
5 | 5 | <Configuration>Debug</Configuration> |
6 | 6 | <Platform>ARM</Platform> |
7 | 7 | </ProjectConfiguration> |
| 8 | + <ProjectConfiguration Include="Debug|ARM64"> |
| 9 | + <Configuration>Debug</Configuration> |
| 10 | + <Platform>ARM64</Platform> |
| 11 | + </ProjectConfiguration> |
8 | 12 | <ProjectConfiguration Include="Debug|Win32"> |
9 | 13 | <Configuration>Debug</Configuration> |
10 | 14 | <Platform>Win32</Platform> |
|
41 | 45 | <PlatformToolset>v142</PlatformToolset> |
42 | 46 | <CharacterSet>Unicode</CharacterSet> |
43 | 47 | </PropertyGroup> |
| 48 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration"> |
| 49 | + <ConfigurationType>StaticLibrary</ConfigurationType> |
| 50 | + <UseDebugLibraries>true</UseDebugLibraries> |
| 51 | + <PlatformToolset>v142</PlatformToolset> |
| 52 | + <CharacterSet>Unicode</CharacterSet> |
| 53 | + </PropertyGroup> |
44 | 54 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
45 | 55 | <ImportGroup Label="ExtensionSettings"> |
46 | 56 | <Import Project="$(VCTargetsPath)\BuildCustomizations\marmasm.props" /> |
|
57 | 67 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="PropertySheets"> |
58 | 68 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
59 | 69 | </ImportGroup> |
| 70 | + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="PropertySheets"> |
| 71 | + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
| 72 | + </ImportGroup> |
60 | 73 | <PropertyGroup Label="UserMacros" /> |
61 | 74 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
62 | 75 | <LinkIncremental>true</LinkIncremental> |
|
71 | 84 | <LinkIncremental>true</LinkIncremental> |
72 | 85 | <OutDir>$(SolutionDir)\..\lib\win_arm\</OutDir> |
73 | 86 | </PropertyGroup> |
| 87 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'"> |
| 88 | + <LinkIncremental>true</LinkIncremental> |
| 89 | + <OutDir>$(SolutionDir)\..\lib\win_arm64\</OutDir> |
| 90 | + </PropertyGroup> |
74 | 91 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
75 | 92 | <ClCompile> |
76 | 93 | <WarningLevel>Level3</WarningLevel> |
|
128 | 145 | <AdditionalOptions>/Brepro %(AdditionalOptions)</AdditionalOptions> |
129 | 146 | </Lib> |
130 | 147 | </ItemDefinitionGroup> |
| 148 | + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'"> |
| 149 | + <ClCompile> |
| 150 | + <WarningLevel>Level3</WarningLevel> |
| 151 | + <SDLCheck>true</SDLCheck> |
| 152 | + <PreprocessorDefinitions>_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| 153 | + <ConformanceMode>true</ConformanceMode> |
| 154 | + <PrecompiledHeader>NotUsing</PrecompiledHeader> |
| 155 | + <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile> |
| 156 | + <DebugInformationFormat>OldStyle</DebugInformationFormat> |
| 157 | + </ClCompile> |
| 158 | + <Link> |
| 159 | + <SubSystem> |
| 160 | + </SubSystem> |
| 161 | + <GenerateDebugInformation>true</GenerateDebugInformation> |
| 162 | + </Link> |
| 163 | + <Lib> |
| 164 | + <AdditionalOptions>/Brepro %(AdditionalOptions)</AdditionalOptions> |
| 165 | + </Lib> |
| 166 | + </ItemDefinitionGroup> |
131 | 167 | <ItemGroup> |
132 | 168 | <ClInclude Include="..\..\src\platforms\platform.h" /> |
| 169 | + <ClInclude Include="..\..\src\platforms\switch_arm64_msvc.h" /> |
133 | 170 | <ClInclude Include="..\..\src\platforms\switch_arm_msvc.h" /> |
134 | 171 | <ClInclude Include="..\..\src\platforms\switch_x64_msvc.h" /> |
135 | 172 | <ClInclude Include="..\..\src\platforms\switch_x86_msvc.h" /> |
|
142 | 179 | <ClCompile Include="template.c"> |
143 | 180 | <AssemblerOutput Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AssemblyCode</AssemblerOutput> |
144 | 181 | <AssemblerOutput Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">AssemblyCode</AssemblerOutput> |
| 182 | + <AssemblerOutput Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">AssemblyCode</AssemblerOutput> |
145 | 183 | <SupportJustMyCode Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</SupportJustMyCode> |
146 | 184 | <SupportJustMyCode Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">false</SupportJustMyCode> |
| 185 | + <SupportJustMyCode Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">false</SupportJustMyCode> |
147 | 186 | <BasicRuntimeChecks Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Default</BasicRuntimeChecks> |
148 | 187 | <BasicRuntimeChecks Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">Default</BasicRuntimeChecks> |
| 188 | + <BasicRuntimeChecks Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">Default</BasicRuntimeChecks> |
149 | 189 | <OmitFramePointers Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</OmitFramePointers> |
150 | 190 | <OmitFramePointers Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">false</OmitFramePointers> |
| 191 | + <OmitFramePointers Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">false</OmitFramePointers> |
151 | 192 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild> |
152 | 193 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">true</ExcludedFromBuild> |
| 194 | + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">false</ExcludedFromBuild> |
153 | 195 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild> |
154 | 196 | </ClCompile> |
155 | 197 | </ItemGroup> |
156 | 198 | <ItemGroup> |
157 | | - <MARMASM Include="..\..\src\platforms\switch_arm_msvc.asm" /> |
| 199 | + <MARMASM Include="..\..\src\platforms\switch_arm_msvc.asm"> |
| 200 | + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">false</ExcludedFromBuild> |
| 201 | + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">true</ExcludedFromBuild> |
| 202 | + </MARMASM> |
| 203 | + <MARMASM Include="..\..\src\platforms\switch_arm64_msvc.asm"> |
| 204 | + <FileType>Document</FileType> |
| 205 | + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">true</ExcludedFromBuild> |
| 206 | + </MARMASM> |
158 | 207 | <MASM Include="..\..\src\platforms\switch_x64_msvc.asm"> |
159 | 208 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild> |
160 | 209 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">true</ExcludedFromBuild> |
| 210 | + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">true</ExcludedFromBuild> |
161 | 211 | </MASM> |
162 | 212 | <MASM Include="..\..\src\platforms\switch_x86_msvc.asm"> |
163 | 213 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild> |
164 | 214 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">true</ExcludedFromBuild> |
| 215 | + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">true</ExcludedFromBuild> |
165 | 216 | </MASM> |
166 | 217 | </ItemGroup> |
167 | 218 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
|
0 commit comments