Skip to content

Commit a02a916

Browse files
committed
modify:build script
1 parent f137074 commit a02a916

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

XEngine_Source/Makefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ MakeAll:$(XENGINE_MODULES)
2222

2323
libjsoncpp.so:
2424
make -C $(BASE_THIRDPART_JSONCPP) PLATFORM=$(PLATFORM) $(FLAGS)
25-
libXEngine_InfoReport.so
25+
libXEngine_InfoReport.so:
2626
make -C $(BASE_THIRDPART_REPORT) PLATFORM=$(PLATFORM) $(FLAGS)
2727

2828
libMQCore_ConfigModule.so:
@@ -35,7 +35,4 @@ libMQCore_DBModule.so:
3535
make -C $(BASE_DATABASE_PATH) PLATFORM=$(PLATFORM) $(FLAGS)
3636

3737
XEngine_MQServiceApp.exe:
38-
make -C $(APP_SERVICE_PATH) PLATFORM=$(PLATFORM) $(FLAGS)
39-
40-
41-
38+
make -C $(APP_SERVICE_PATH) PLATFORM=$(PLATFORM) $(FLAGS)

XEngine_Source/XEngine_MQServiceApp/MQService_MQTTTask.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@ bool MQService_MQTT_Handle(LPCXSTR lpszClientAddr, MQTTPROTOCOL_FIXEDHEADER* pSt
144144
}
145145
else if (XENGINE_RFCCOMPONENTS_MQTT_PROTOCOL_TYPE_PUBLISH == pSt_MQTTHdr->byMsgType)
146146
{
147-
int nPLen = 0;
148147
int nListCount = 0;
149148
XSHOT wMsgID = 0;
150149
XCHAR tszTopicName[MAX_PATH] = {};

XEngine_Source/XEngine_MQServiceApp/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ UNICODE = 0
77
LOADHDR = -I ./
88
LOADSO = -L ../MQCore_ConfigModule -L ../MQCore_ProtocolModule -L ../MQCore_SessionModule -L ../MQCore_DBModule \
99
-L ../XEngine_Depend/XEngine_Module/jsoncpp -L ../XEngine_Depend/XEngine_Module/XEngine_InfoReport
10-
LIB = -lXEngine_BaseLib -lXEngine_Algorithm -lXEngine_Core -lXEngine_ManagePool -lXClient_APIHelp -lXEngine_SystemApi -lHelpComponents_XLog -lHelpComponents_Packets -lRfcComponents_WSProtocol -lRfcComponents_HttpProtocol \
10+
LIB = -lXEngine_BaseLib -lXEngine_Algorithm -lXEngine_Core -lXEngine_ManagePool -lXClient_APIHelp -lXEngine_SystemApi -lHelpComponents_XLog -lHelpComponents_Packets -lRfcComponents_WSProtocol -lRfcComponents_HttpProtocol -lRfcComponents_MQTTProtocol \
1111
-lMQCore_ConfigModule -lMQCore_ProtocolModule -lMQCore_SessionModule -lMQCore_DBModule \
1212
-ljsoncpp -lXEngine_InfoReport
1313
LIBEX =

0 commit comments

Comments
 (0)