mirror of
https://github.com/FreeRTOS/coreMQTT
synced 2025-05-13 13:49:41 +08:00

* Move transport_interface.h to interface/ folder. * Replace all paths to portable with interface.
21 lines
765 B
CMake
21 lines
765 B
CMake
# This file is to add source files and include directories
|
|
# into variables so that it can be reused from different repositories
|
|
# in their Cmake based build system by including this file.
|
|
#
|
|
# Files specific to the repository such as test runner, platform tests
|
|
# are not added to the variables.
|
|
|
|
# MQTT library source files.
|
|
set( MQTT_SOURCES
|
|
"${CMAKE_CURRENT_LIST_DIR}/source/core_mqtt.c"
|
|
"${CMAKE_CURRENT_LIST_DIR}/source/core_mqtt_state.c" )
|
|
|
|
# MQTT Serializer library source files.
|
|
set( MQTT_SERIALIZER_SOURCES
|
|
"${CMAKE_CURRENT_LIST_DIR}/source/core_mqtt_serializer.c" )
|
|
|
|
# MQTT library Public Include directories.
|
|
set( MQTT_INCLUDE_PUBLIC_DIRS
|
|
"${CMAKE_CURRENT_LIST_DIR}/source/include"
|
|
"${CMAKE_CURRENT_LIST_DIR}/source/interface" )
|