Skip to content

Commit bcbb7f4

Browse files
committed
fixed:vs build error
1 parent 211bc51 commit bcbb7f4

File tree

2 files changed

+89
-4
lines changed

2 files changed

+89
-4
lines changed

XEngine_Source/MQCore_HelpModule/MQCore_HelpModule.vcxproj

Lines changed: 85 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>
@@ -45,13 +53,26 @@
4553
<PlatformToolset>v143</PlatformToolset>
4654
<CharacterSet>Unicode</CharacterSet>
4755
</PropertyGroup>
56+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration">
57+
<ConfigurationType>DynamicLibrary</ConfigurationType>
58+
<UseDebugLibraries>true</UseDebugLibraries>
59+
<PlatformToolset>v143</PlatformToolset>
60+
<CharacterSet>Unicode</CharacterSet>
61+
</PropertyGroup>
4862
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
4963
<ConfigurationType>DynamicLibrary</ConfigurationType>
5064
<UseDebugLibraries>false</UseDebugLibraries>
5165
<PlatformToolset>v143</PlatformToolset>
5266
<WholeProgramOptimization>true</WholeProgramOptimization>
5367
<CharacterSet>Unicode</CharacterSet>
5468
</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>
@@ -66,14 +87,40 @@
6687
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
6788
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
6889
</ImportGroup>
90+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="PropertySheets">
91+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
92+
</ImportGroup>
6993
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
7094
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
7195
</ImportGroup>
96+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="PropertySheets">
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
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
74101
<IncludePath>$(XEngine_Include);..\MQCore_HelpModule;$(IncludePath)</IncludePath>
75102
<LibraryPath>$(XEngine_Lib32);$(LibraryPath)</LibraryPath>
76103
</PropertyGroup>
104+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
105+
<IncludePath>$(XEngine_Include);$(IncludePath)</IncludePath>
106+
<LibraryPath>$(XEngine_Lib32);$(LibraryPath)</LibraryPath>
107+
</PropertyGroup>
108+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
109+
<IncludePath>$(XEngine_Include);$(IncludePath)</IncludePath>
110+
<LibraryPath>$(XEngine_Lib64);$(LibraryPath)</LibraryPath>
111+
</PropertyGroup>
112+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
113+
<IncludePath>$(XEngine_Include);$(IncludePath)</IncludePath>
114+
<LibraryPath>$(XEngine_LibArm64);$(LibraryPath)</LibraryPath>
115+
</PropertyGroup>
116+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
117+
<IncludePath>$(XEngine_Include);$(IncludePath)</IncludePath>
118+
<LibraryPath>$(XEngine_Lib64);$(LibraryPath)</LibraryPath>
119+
</PropertyGroup>
120+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
121+
<IncludePath>$(XEngine_Include);$(IncludePath)</IncludePath>
122+
<LibraryPath>$(XEngine_LibArm64);$(LibraryPath)</LibraryPath>
123+
</PropertyGroup>
77124
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
78125
<ClCompile>
79126
<WarningLevel>Level3</WarningLevel>
@@ -126,6 +173,22 @@
126173
<ModuleDefinitionFile>MQCore_HelpModule.def</ModuleDefinitionFile>
127174
</Link>
128175
</ItemDefinitionGroup>
176+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
177+
<ClCompile>
178+
<WarningLevel>Level3</WarningLevel>
179+
<SDLCheck>true</SDLCheck>
180+
<PreprocessorDefinitions>_DEBUG;MQCOREHELPMODULE_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
181+
<ConformanceMode>true</ConformanceMode>
182+
<PrecompiledHeader>Use</PrecompiledHeader>
183+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
184+
</ClCompile>
185+
<Link>
186+
<SubSystem>Windows</SubSystem>
187+
<GenerateDebugInformation>true</GenerateDebugInformation>
188+
<EnableUAC>false</EnableUAC>
189+
<ModuleDefinitionFile>MQCore_HelpModule.def</ModuleDefinitionFile>
190+
</Link>
191+
</ItemDefinitionGroup>
129192
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
130193
<ClCompile>
131194
<WarningLevel>Level3</WarningLevel>
@@ -146,6 +209,26 @@
146209
<ModuleDefinitionFile>MQCore_HelpModule.def</ModuleDefinitionFile>
147210
</Link>
148211
</ItemDefinitionGroup>
212+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
213+
<ClCompile>
214+
<WarningLevel>Level3</WarningLevel>
215+
<FunctionLevelLinking>true</FunctionLevelLinking>
216+
<IntrinsicFunctions>true</IntrinsicFunctions>
217+
<SDLCheck>true</SDLCheck>
218+
<PreprocessorDefinitions>NDEBUG;MQCOREHELPMODULE_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
219+
<ConformanceMode>true</ConformanceMode>
220+
<PrecompiledHeader>Use</PrecompiledHeader>
221+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
222+
</ClCompile>
223+
<Link>
224+
<SubSystem>Windows</SubSystem>
225+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
226+
<OptimizeReferences>true</OptimizeReferences>
227+
<GenerateDebugInformation>true</GenerateDebugInformation>
228+
<EnableUAC>false</EnableUAC>
229+
<ModuleDefinitionFile>MQCore_HelpModule.def</ModuleDefinitionFile>
230+
</Link>
231+
</ItemDefinitionGroup>
149232
<ItemGroup>
150233
<ClInclude Include="APIHelp_Counter\APIHelp_Counter.h" />
151234
<ClInclude Include="APIHelp_Define.h" />
@@ -159,8 +242,10 @@
159242
<ClCompile Include="pch.cpp">
160243
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
161244
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader>
245+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">Create</PrecompiledHeader>
162246
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
163247
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
248+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">Create</PrecompiledHeader>
164249
</ClCompile>
165250
</ItemGroup>
166251
<ItemGroup>

XEngine_Source/XEngine_MQServiceApp.sln

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,14 +156,14 @@ Global
156156
{8C55D3E0-FEC2-4A6C-A374-651516ED8F99}.Release|x64.Build.0 = Release|x64
157157
{8C55D3E0-FEC2-4A6C-A374-651516ED8F99}.Release|x86.ActiveCfg = Release|Win32
158158
{8C55D3E0-FEC2-4A6C-A374-651516ED8F99}.Release|x86.Build.0 = Release|Win32
159-
{4B061F8B-A783-45EA-A8D1-78F9668C49D2}.Debug|ARM64.ActiveCfg = Debug|x64
160-
{4B061F8B-A783-45EA-A8D1-78F9668C49D2}.Debug|ARM64.Build.0 = Debug|x64
159+
{4B061F8B-A783-45EA-A8D1-78F9668C49D2}.Debug|ARM64.ActiveCfg = Debug|ARM64
160+
{4B061F8B-A783-45EA-A8D1-78F9668C49D2}.Debug|ARM64.Build.0 = Debug|ARM64
161161
{4B061F8B-A783-45EA-A8D1-78F9668C49D2}.Debug|x64.ActiveCfg = Debug|x64
162162
{4B061F8B-A783-45EA-A8D1-78F9668C49D2}.Debug|x64.Build.0 = Debug|x64
163163
{4B061F8B-A783-45EA-A8D1-78F9668C49D2}.Debug|x86.ActiveCfg = Debug|Win32
164164
{4B061F8B-A783-45EA-A8D1-78F9668C49D2}.Debug|x86.Build.0 = Debug|Win32
165-
{4B061F8B-A783-45EA-A8D1-78F9668C49D2}.Release|ARM64.ActiveCfg = Release|x64
166-
{4B061F8B-A783-45EA-A8D1-78F9668C49D2}.Release|ARM64.Build.0 = Release|x64
165+
{4B061F8B-A783-45EA-A8D1-78F9668C49D2}.Release|ARM64.ActiveCfg = Release|ARM64
166+
{4B061F8B-A783-45EA-A8D1-78F9668C49D2}.Release|ARM64.Build.0 = Release|ARM64
167167
{4B061F8B-A783-45EA-A8D1-78F9668C49D2}.Release|x64.ActiveCfg = Release|x64
168168
{4B061F8B-A783-45EA-A8D1-78F9668C49D2}.Release|x64.Build.0 = Release|x64
169169
{4B061F8B-A783-45EA-A8D1-78F9668C49D2}.Release|x86.ActiveCfg = Release|Win32

0 commit comments

Comments
 (0)