mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-06-03 02:56:35 +08:00
Merge branch 'feature/refactor_mqtt_folder' into 'master'
feat(mqtt): Restructure mqtt folder as default paho structure See merge request sdk/ESP8266_RTOS_SDK!168
This commit is contained in:
@ -1,5 +1,12 @@
|
||||
set(COMPONENT_SRCDIRS source/library source/platform)
|
||||
set(COMPONENT_ADD_INCLUDEDIRS include include/mqtt)
|
||||
set(COMPONENT_ADD_INCLUDEDIRS
|
||||
paho/MQTTClient-C/src
|
||||
paho/MQTTClient-C/src/FreeRTOS
|
||||
paho/MQTTPacket/src)
|
||||
|
||||
set(COMPONENT_SRCDIRS
|
||||
paho/MQTTClient-C/src
|
||||
paho/MQTTClient-C/src/FreeRTOS
|
||||
paho/MQTTPacket/src)
|
||||
|
||||
set(COMPONENT_REQUIRES freertos lwip ssl)
|
||||
|
||||
|
@ -1,8 +1,12 @@
|
||||
#
|
||||
# Component Makefile
|
||||
#
|
||||
COMPONENT_ADD_INCLUDEDIRS += include/mqtt
|
||||
COMPONENT_ADD_INCLUDEDIRS += paho/MQTTClient-C/src \
|
||||
paho/MQTTClient-C/src/FreeRTOS \
|
||||
paho/MQTTPacket/src
|
||||
|
||||
COMPONENT_SRCDIRS += source/library source/platform
|
||||
COMPONENT_SRCDIRS += paho/MQTTClient-C/src \
|
||||
paho/MQTTClient-C/src/FreeRTOS \
|
||||
paho/MQTTPacket/src
|
||||
|
||||
CFLAGS += -DMQTT_TASK
|
||||
|
0
components/mqtt/source/platform/MQTTFreeRTOS.c → components/mqtt/paho/MQTTClient-C/src/FreeRTOS/MQTTFreeRTOS.c
Normal file → Executable file
0
components/mqtt/source/platform/MQTTFreeRTOS.c → components/mqtt/paho/MQTTClient-C/src/FreeRTOS/MQTTFreeRTOS.c
Normal file → Executable file
0
components/mqtt/include/mqtt/MQTTFreeRTOS.h → components/mqtt/paho/MQTTClient-C/src/FreeRTOS/MQTTFreeRTOS.h
Normal file → Executable file
0
components/mqtt/include/mqtt/MQTTFreeRTOS.h → components/mqtt/paho/MQTTClient-C/src/FreeRTOS/MQTTFreeRTOS.h
Normal file → Executable file
0
components/mqtt/source/library/MQTTClient.c → components/mqtt/paho/MQTTClient-C/src/MQTTClient.c
Normal file → Executable file
0
components/mqtt/source/library/MQTTClient.c → components/mqtt/paho/MQTTClient-C/src/MQTTClient.c
Normal file → Executable file
0
components/mqtt/include/mqtt/MQTTClient.h → components/mqtt/paho/MQTTClient-C/src/MQTTClient.h
Normal file → Executable file
0
components/mqtt/include/mqtt/MQTTClient.h → components/mqtt/paho/MQTTClient-C/src/MQTTClient.h
Normal file → Executable file
Reference in New Issue
Block a user