Skip to content

Commit 6e48768

Browse files
committed
modify:depend library direction name
1 parent 1773c51 commit 6e48768

File tree

12 files changed

+49
-50
lines changed

12 files changed

+49
-50
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "XEngine_Source/XEngine_Depend"]
2-
path = XEngine_Source/XEngine_Depend
2+
path = XEngine_Source/XEngine_DependLibrary
33
url = https://github.com/libxengine/XEngine_OPenSource.git

XEngine_Source/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ UNICODE = 0
33
PLATFORM=linux
44
FLAGS=
55

6-
THIRD_JSONCPP_PATH = ./XEngine_Depend/XEngine_Module/jsoncpp
7-
THIRD_TINYXML_PATH = ./XEngine_Depend/XEngine_Module/tinyxml2
8-
THIRD_REPORT_PATH = ./XEngine_Depend/XEngine_Module/XEngine_InfoReport
6+
THIRD_JSONCPP_PATH = ./XEngine_DependLibrary/XEngine_Module/jsoncpp
7+
THIRD_TINYXML_PATH = ./XEngine_DependLibrary/XEngine_Module/tinyxml2
8+
THIRD_REPORT_PATH = ./XEngine_DependLibrary/XEngine_Module/XEngine_InfoReport
99

1010
BASE_SQL_PATH = ./StorageModule_Database
1111
BASE_CONFIG_PATH = ./StorageModule_Config

XEngine_Source/StorageModule_APIHelp/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ CC = g++ -Wall -std=c++20 -fPIC
22
PLATVER =
33
FILEEXT =
44
LIBFLAG =
5-
LOADHDR = -I ./ -I ../XEngine_Depend/XEngine_Module/jsoncpp
6-
LOADSO = -L ../XEngine_Depend/XEngine_Module/jsoncpp
5+
LOADHDR = -I ./ -I ../XEngine_DependLibrary/XEngine_Module/jsoncpp
6+
LOADSO = -L ../XEngine_DependLibrary/XEngine_Module/jsoncpp
77
LIB = -lXEngine_BaseLib -lXEngine_Cryption -lRfcComponents_HttpProtocol -lXEngine_SystemApi -ljsoncpp
88
LIBEX =
99
OBJECTS = APIHelp_Distributed.o APIHelp_Api.o APIHelp_Cryption.o pch.o

XEngine_Source/StorageModule_APIHelp/StorageModule_APIHelp.vcxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,32 +99,32 @@
9999
<PropertyGroup Label="UserMacros" />
100100
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
101101
<LinkIncremental>true</LinkIncremental>
102-
<IncludePath>$(XEngine_Include);../XEngine_Depend/XEngine_Module/jsoncpp;..\StorageModule_APIHelp;$(IncludePath)</IncludePath>
102+
<IncludePath>$(XEngine_Include);../XEngine_DependLibrary/XEngine_Module/jsoncpp;..\StorageModule_APIHelp;$(IncludePath)</IncludePath>
103103
<LibraryPath>$(XEngine_Lib32);$(LibraryPath)</LibraryPath>
104104
</PropertyGroup>
105105
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
106106
<LinkIncremental>false</LinkIncremental>
107-
<IncludePath>$(XEngine_Include);../XEngine_Depend/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
107+
<IncludePath>$(XEngine_Include);../XEngine_DependLibrary/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
108108
<LibraryPath>$(XEngine_Lib32);$(LibraryPath)</LibraryPath>
109109
</PropertyGroup>
110110
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
111111
<LinkIncremental>true</LinkIncremental>
112-
<IncludePath>$(XEngine_Include);../XEngine_Depend/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
112+
<IncludePath>$(XEngine_Include);../XEngine_DependLibrary/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
113113
<LibraryPath>$(XEngine_Lib64);$(LibraryPath)</LibraryPath>
114114
</PropertyGroup>
115115
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
116116
<LinkIncremental>true</LinkIncremental>
117-
<IncludePath>$(XEngine_Include);../XEngine_Depend/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
117+
<IncludePath>$(XEngine_Include);../XEngine_DependLibrary/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
118118
<LibraryPath>$(XEngine_LibArm64);$(LibraryPath)</LibraryPath>
119119
</PropertyGroup>
120120
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
121121
<LinkIncremental>false</LinkIncremental>
122-
<IncludePath>$(XEngine_Include);../XEngine_Depend/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
122+
<IncludePath>$(XEngine_Include);../XEngine_DependLibrary/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
123123
<LibraryPath>$(XEngine_Lib64);$(LibraryPath)</LibraryPath>
124124
</PropertyGroup>
125125
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
126126
<LinkIncremental>false</LinkIncremental>
127-
<IncludePath>$(XEngine_Include);../XEngine_Depend/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
127+
<IncludePath>$(XEngine_Include);../XEngine_DependLibrary/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
128128
<LibraryPath>$(XEngine_LibArm64);$(LibraryPath)</LibraryPath>
129129
</PropertyGroup>
130130
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">

XEngine_Source/StorageModule_Config/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ CC = g++ -Wall -std=c++20 -fPIC
22
PLATVER =
33
FILEEXT =
44
LIBFLAG =
5-
LOADHDR = -I ./ -I ../XEngine_Depend/XEngine_Module/jsoncpp
6-
LOADSO = -L ../XEngine_Depend/XEngine_Module/jsoncpp
5+
LOADHDR = -I ./ -I ../XEngine_DependLibrary/XEngine_Module/jsoncpp
6+
LOADSO = -L ../XEngine_DependLibrary/XEngine_Module/jsoncpp
77
LIB = -ljsoncpp
88
LIBEX =
99
OBJECTS = Config_Json.o pch.o

XEngine_Source/StorageModule_Config/StorageModule_Config.vcxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,28 +99,28 @@
9999
<PropertyGroup Label="UserMacros" />
100100
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
101101
<LinkIncremental>true</LinkIncremental>
102-
<IncludePath>$(XEngine_Include);../XEngine_Depend/XEngine_Module/jsoncpp;..\StorageModule_Config;$(IncludePath)</IncludePath>
102+
<IncludePath>$(XEngine_Include);../XEngine_DependLibrary/XEngine_Module/jsoncpp;..\StorageModule_Config;$(IncludePath)</IncludePath>
103103
</PropertyGroup>
104104
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
105105
<LinkIncremental>false</LinkIncremental>
106-
<IncludePath>$(XEngine_Include);../XEngine_Depend/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
106+
<IncludePath>$(XEngine_Include);../XEngine_DependLibrary/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
107107
<LibraryPath>$(XEngine_Lib32);$(LibraryPath)</LibraryPath>
108108
</PropertyGroup>
109109
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
110110
<LinkIncremental>true</LinkIncremental>
111-
<IncludePath>$(XEngine_Include);../XEngine_Depend/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
111+
<IncludePath>$(XEngine_Include);../XEngine_DependLibrary/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
112112
</PropertyGroup>
113113
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
114114
<LinkIncremental>true</LinkIncremental>
115-
<IncludePath>$(XEngine_Include);../XEngine_Depend/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
115+
<IncludePath>$(XEngine_Include);../XEngine_DependLibrary/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
116116
</PropertyGroup>
117117
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
118118
<LinkIncremental>false</LinkIncremental>
119-
<IncludePath>$(XEngine_Include);../XEngine_Depend/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
119+
<IncludePath>$(XEngine_Include);../XEngine_DependLibrary/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
120120
</PropertyGroup>
121121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
122122
<LinkIncremental>false</LinkIncremental>
123-
<IncludePath>$(XEngine_Include);../XEngine_Depend/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
123+
<IncludePath>$(XEngine_Include);../XEngine_DependLibrary/XEngine_Module/jsoncpp;$(IncludePath)</IncludePath>
124124
</PropertyGroup>
125125
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
126126
<ClCompile>

XEngine_Source/StorageModule_Protocol/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ CC = g++ -Wall -std=c++20 -fPIC
22
PLATVER =
33
FILEEXT =
44
LIBFLAG =
5-
LOADHDR = -I ./ -I ../XEngine_Depend/XEngine_Module/jsoncpp -I ../XEngine_Depend/XEngine_Module/tinyxml2
6-
LOADSO = -L ../XEngine_Depend/XEngine_Module/jsoncpp -L ../XEngine_Depend/XEngine_Module/tinyxml2 -L ../StorageModule_Session -L ../StorageModule_APIHelp
5+
LOADHDR = -I ./ -I ../XEngine_DependLibrary/XEngine_Module/jsoncpp -I ../XEngine_DependLibrary/XEngine_Module/tinyxml2
6+
LOADSO = -L ../XEngine_DependLibrary/XEngine_Module/jsoncpp -L ../XEngine_DependLibrary/XEngine_Module/tinyxml2 -L ../StorageModule_Session -L ../StorageModule_APIHelp
77
LIB = -lXEngine_BaseLib -lXEngine_SystemApi -ljsoncpp -ltinyxml2 -lStorageModule_Session -lStorageModule_APIHelp
88
LIBEX =
99
OBJECTS = Protocol_StoragePacket.o Protocol_StorageParse.o pch.o

XEngine_Source/StorageModule_Protocol/StorageModule_Protocol.vcxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,32 +99,32 @@
9999
<PropertyGroup Label="UserMacros" />
100100
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
101101
<LinkIncremental>true</LinkIncremental>
102-
<IncludePath>$(XEngine_Include);../XEngine_Depend/XEngine_Module/jsoncpp;../XEngine_Depend/XEngine_Module/tinyxml2;..\StorageModule_Protocol;$(IncludePath)</IncludePath>
102+
<IncludePath>$(XEngine_Include);../XEngine_DependLibrary/XEngine_Module/jsoncpp;../XEngine_DependLibrary/XEngine_Module/tinyxml2;..\StorageModule_Protocol;$(IncludePath)</IncludePath>
103103
<LibraryPath>$(XEngine_Lib32);$(LibraryPath)</LibraryPath>
104104
</PropertyGroup>
105105
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
106106
<LinkIncremental>false</LinkIncremental>
107-
<IncludePath>$(XEngine_Include);../XEngine_Depend/XEngine_Module/jsoncpp;../XEngine_Depend/XEngine_Module/tinyxml2;..\StorageModule_Protocol;$(IncludePath)</IncludePath>
107+
<IncludePath>$(XEngine_Include);../XEngine_DependLibrary/XEngine_Module/jsoncpp;../XEngine_DependLibrary/XEngine_Module/tinyxml2;..\StorageModule_Protocol;$(IncludePath)</IncludePath>
108108
<LibraryPath>$(XEngine_Lib32);$(LibraryPath)</LibraryPath>
109109
</PropertyGroup>
110110
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
111111
<LinkIncremental>true</LinkIncremental>
112-
<IncludePath>$(XEngine_Include);../XEngine_Depend/XEngine_Module/jsoncpp;../XEngine_Depend/XEngine_Module/tinyxml2;..\StorageModule_Protocol;$(IncludePath)</IncludePath>
112+
<IncludePath>$(XEngine_Include);../XEngine_DependLibrary/XEngine_Module/jsoncpp;../XEngine_DependLibrary/XEngine_Module/tinyxml2;..\StorageModule_Protocol;$(IncludePath)</IncludePath>
113113
<LibraryPath>$(XEngine_Lib64);$(LibraryPath)</LibraryPath>
114114
</PropertyGroup>
115115
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
116116
<LinkIncremental>true</LinkIncremental>
117-
<IncludePath>$(XEngine_Include);../XEngine_Depend/XEngine_Module/jsoncpp;../XEngine_Depend/XEngine_Module/tinyxml2;$(IncludePath)</IncludePath>
117+
<IncludePath>$(XEngine_Include);../XEngine_DependLibrary/XEngine_Module/jsoncpp;../XEngine_DependLibrary/XEngine_Module/tinyxml2;$(IncludePath)</IncludePath>
118118
<LibraryPath>$(XEngine_LibArm64);$(LibraryPath)</LibraryPath>
119119
</PropertyGroup>
120120
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
121121
<LinkIncremental>false</LinkIncremental>
122-
<IncludePath>$(XEngine_Include);../XEngine_Depend/XEngine_Module/jsoncpp;../XEngine_Depend/XEngine_Module/tinyxml2;..\StorageModule_Protocol;$(IncludePath)</IncludePath>
122+
<IncludePath>$(XEngine_Include);../XEngine_DependLibrary/XEngine_Module/jsoncpp;../XEngine_DependLibrary/XEngine_Module/tinyxml2;..\StorageModule_Protocol;$(IncludePath)</IncludePath>
123123
<LibraryPath>$(XEngine_Lib64);$(LibraryPath)</LibraryPath>
124124
</PropertyGroup>
125125
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
126126
<LinkIncremental>false</LinkIncremental>
127-
<IncludePath>$(XEngine_Include);../XEngine_Depend/XEngine_Module/jsoncpp;../XEngine_Depend/XEngine_Module/tinyxml2;$(IncludePath)</IncludePath>
127+
<IncludePath>$(XEngine_Include);../XEngine_DependLibrary/XEngine_Module/jsoncpp;../XEngine_DependLibrary/XEngine_Module/tinyxml2;$(IncludePath)</IncludePath>
128128
<LibraryPath>$(XEngine_LibArm64);$(LibraryPath)</LibraryPath>
129129
</PropertyGroup>
130130
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">

XEngine_Source/XEngine_StorageApp.sln

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -60,18 +60,17 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "StorageModule_BTorrent", "S
6060
{F1736B3F-03A2-4FC7-B045-A12BA8D724FB} = {F1736B3F-03A2-4FC7-B045-A12BA8D724FB}
6161
EndProjectSection
6262
EndProject
63-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "XEngine_Depend", "XEngine_Depend", "{E456F23F-1E72-4ABD-AAA9-051B2F7FD728}"
63+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "XEngine_DependLibrary", "XEngine_DependLibrary", "{E456F23F-1E72-4ABD-AAA9-051B2F7FD728}"
6464
EndProject
65-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "jsoncpp", "XEngine_Depend\XEngine_Module\jsoncpp\jsoncpp.vcxproj", "{F1736B3F-03A2-4FC7-B045-A12BA8D724FB}"
65+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "jsoncpp", "XEngine_DependLibrary\XEngine_Module\jsoncpp\jsoncpp.vcxproj", "{F1736B3F-03A2-4FC7-B045-A12BA8D724FB}"
6666
EndProject
67-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "XEngine_InfoReport", "XEngine_Depend\XEngine_Module\XEngine_InfoReport\XEngine_InfoReport.vcxproj", "{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}"
67+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tinyxml2", "XEngine_DependLibrary\XEngine_Module\tinyxml2\tinyxml2.vcxproj", "{4BF7CA78-A1DD-4C6A-8AC7-C3AEB528115A}"
68+
EndProject
69+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "XEngine_InfoReport", "XEngine_DependLibrary\XEngine_Module\XEngine_InfoReport\XEngine_InfoReport.vcxproj", "{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}"
6870
ProjectSection(ProjectDependencies) = postProject
69-
{4BF7CA78-A1DD-4C6A-8AC7-C3AEB528115A} = {4BF7CA78-A1DD-4C6A-8AC7-C3AEB528115A}
7071
{F1736B3F-03A2-4FC7-B045-A12BA8D724FB} = {F1736B3F-03A2-4FC7-B045-A12BA8D724FB}
7172
EndProjectSection
7273
EndProject
73-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tinyxml2", "XEngine_Depend\XEngine_Module\tinyxml2\tinyxml2.vcxproj", "{4BF7CA78-A1DD-4C6A-8AC7-C3AEB528115A}"
74-
EndProject
7574
Global
7675
GlobalSection(SolutionConfigurationPlatforms) = preSolution
7776
Debug|ARM64 = Debug|ARM64
@@ -178,18 +177,6 @@ Global
178177
{F1736B3F-03A2-4FC7-B045-A12BA8D724FB}.Release|x64.Build.0 = Release|x64
179178
{F1736B3F-03A2-4FC7-B045-A12BA8D724FB}.Release|x86.ActiveCfg = Release|Win32
180179
{F1736B3F-03A2-4FC7-B045-A12BA8D724FB}.Release|x86.Build.0 = Release|Win32
181-
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Debug|ARM64.ActiveCfg = Debug|ARM64
182-
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Debug|ARM64.Build.0 = Debug|ARM64
183-
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Debug|x64.ActiveCfg = Debug|x64
184-
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Debug|x64.Build.0 = Debug|x64
185-
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Debug|x86.ActiveCfg = Debug|Win32
186-
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Debug|x86.Build.0 = Debug|Win32
187-
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Release|ARM64.ActiveCfg = Release|ARM64
188-
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Release|ARM64.Build.0 = Release|ARM64
189-
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Release|x64.ActiveCfg = Release|x64
190-
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Release|x64.Build.0 = Release|x64
191-
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Release|x86.ActiveCfg = Release|Win32
192-
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Release|x86.Build.0 = Release|Win32
193180
{4BF7CA78-A1DD-4C6A-8AC7-C3AEB528115A}.Debug|ARM64.ActiveCfg = Debug|ARM64
194181
{4BF7CA78-A1DD-4C6A-8AC7-C3AEB528115A}.Debug|ARM64.Build.0 = Debug|ARM64
195182
{4BF7CA78-A1DD-4C6A-8AC7-C3AEB528115A}.Debug|x64.ActiveCfg = Debug|x64
@@ -202,14 +189,26 @@ Global
202189
{4BF7CA78-A1DD-4C6A-8AC7-C3AEB528115A}.Release|x64.Build.0 = Release|x64
203190
{4BF7CA78-A1DD-4C6A-8AC7-C3AEB528115A}.Release|x86.ActiveCfg = Release|Win32
204191
{4BF7CA78-A1DD-4C6A-8AC7-C3AEB528115A}.Release|x86.Build.0 = Release|Win32
192+
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Debug|ARM64.ActiveCfg = Debug|ARM64
193+
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Debug|ARM64.Build.0 = Debug|ARM64
194+
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Debug|x64.ActiveCfg = Debug|x64
195+
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Debug|x64.Build.0 = Debug|x64
196+
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Debug|x86.ActiveCfg = Debug|Win32
197+
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Debug|x86.Build.0 = Debug|Win32
198+
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Release|ARM64.ActiveCfg = Release|ARM64
199+
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Release|ARM64.Build.0 = Release|ARM64
200+
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Release|x64.ActiveCfg = Release|x64
201+
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Release|x64.Build.0 = Release|x64
202+
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Release|x86.ActiveCfg = Release|Win32
203+
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89}.Release|x86.Build.0 = Release|Win32
205204
EndGlobalSection
206205
GlobalSection(SolutionProperties) = preSolution
207206
HideSolutionNode = FALSE
208207
EndGlobalSection
209208
GlobalSection(NestedProjects) = preSolution
210209
{F1736B3F-03A2-4FC7-B045-A12BA8D724FB} = {E456F23F-1E72-4ABD-AAA9-051B2F7FD728}
211-
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89} = {E456F23F-1E72-4ABD-AAA9-051B2F7FD728}
212210
{4BF7CA78-A1DD-4C6A-8AC7-C3AEB528115A} = {E456F23F-1E72-4ABD-AAA9-051B2F7FD728}
211+
{F6520D2C-BB8E-45BB-964B-F5D6A4318A89} = {E456F23F-1E72-4ABD-AAA9-051B2F7FD728}
213212
EndGlobalSection
214213
GlobalSection(ExtensibilityGlobals) = postSolution
215214
SolutionGuid = {B1A862E2-1FE4-4F3E-B84C-3479A0B3A783}

0 commit comments

Comments
 (0)