Skip to content

Commit 0aa7438

Browse files
committed
fixed:make build error
1 parent 1a3229c commit 0aa7438

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

XEngine_Source/XEngine_ModuleConfigure/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ CC = g++ -Wall -std=c++17 -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 = ModuleConfigure_Json.o pch.o

XEngine_Source/XEngine_ModuleProtocol/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ CC = g++ -Wall -std=c++17 -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 = ModuleProtocol_Packet.o ModuleProtocol_Parse.o pch.o

XEngine_Source/XEngine_ServiceApp/XEngine_CenterApp/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ CC = g++ -Wall -std=c++17
22
PLATVER =
33
LOADHDR = -I ./
44
LOADSO = -L ../../XEngine_ModuleConfigure -L ../../XEngine_ModuleDatabase -L ../../XEngine_ModuleProtocol \
5-
-L ../../XEngine_Depend/XEngine_Module/jsoncpp
5+
-L ../../XEngine_DependLibrary/XEngine_Module/jsoncpp
66
LIB = -lXEngine_BaseLib -lXEngine_Algorithm -lXEngine_Core -lNetHelp_APIHelp -lXEngine_ManagePool -lHelpComponents_XLog -lHelpComponents_Packets \
77
-lXEngine_ModuleConfigure -lXEngine_ModuleDatabase -lXEngine_ModuleProtocol \
88
-ljsoncpp

XEngine_Source/XEngine_ServiceApp/XEngine_HTTP2App/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ CC = g++ -Wall -std=c++17
22
PLATVER =
33
LOADHDR = -I ./
44
LOADSO = -L ../../XEngine_ModuleConfigure -L ../../XEngine_ModuleDatabase -L ../../XEngine_ModuleProtocol \
5-
-L ../../XEngine_Depend/XEngine_Module/jsoncpp
5+
-L ../../XEngine_DependLibrary/XEngine_Module/jsoncpp
66
LIB = -lXEngine_BaseLib -lXEngine_Algorithm -lXEngine_Core -lXEngine_ManagePool -lHelpComponents_XLog -lRfcComponents_HttpProtocol \
77
-lXEngine_ModuleConfigure -lXEngine_ModuleDatabase -lXEngine_ModuleProtocol \
88
-ljsoncpp

XEngine_Source/XEngine_ServiceApp/XEngine_HttpApp/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ CC = g++ -Wall -std=c++17
22
PLATVER =
33
LOADHDR = -I ./
44
LOADSO = -L ../../XEngine_ModuleConfigure -L ../../XEngine_ModuleDatabase -L ../../XEngine_ModuleProtocol \
5-
-L ../../XEngine_Depend/XEngine_Module/jsoncpp
5+
-L ../../XEngine_DependLibrary/XEngine_Module/jsoncpp
66
LIB = -lXEngine_BaseLib -lXEngine_Algorithm -lXEngine_Core -lXEngine_ManagePool -lHelpComponents_XLog -lRfcComponents_HttpProtocol \
77
-lXEngine_ModuleConfigure -lXEngine_ModuleDatabase -lXEngine_ModuleProtocol \
88
-ljsoncpp

XEngine_Source/XEngine_ServiceApp/XEngine_WebSocketApp/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ CC = g++ -Wall -std=c++17
22
PLATVER =
33
LOADHDR = -I ./
44
LOADSO = -L ../../XEngine_ModuleConfigure -L ../../XEngine_ModuleDatabase -L ../../XEngine_ModuleProtocol \
5-
-L ../../XEngine_Depend/XEngine_Module/jsoncpp
5+
-L ../../XEngine_DependLibrary/XEngine_Module/jsoncpp
66
LIB = -lXEngine_BaseLib -lXEngine_Algorithm -lXEngine_Core -lXEngine_ManagePool -lHelpComponents_XLog -lRfcComponents_WSProtocol \
77
-lXEngine_ModuleConfigure -lXEngine_ModuleDatabase -lXEngine_ModuleProtocol \
88
-ljsoncpp

0 commit comments

Comments
 (0)