Skip to content

Commit

Permalink
properly name source files
Browse files Browse the repository at this point in the history
  • Loading branch information
256dpi committed Apr 6, 2022
1 parent 67eae4b commit 4161c68
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
cmake_minimum_required(VERSION 3.7)
set(CMAKE_C_STANDARD 99)

FILE(GLOB_RECURSE sources
set(srcs
"esp_lwmqtt.c"
"esp_mqtt.c"
"esp_tls_lwmqtt.c"
"lwmqtt/src/*.*")
"lwmqtt/src/client.c"
"lwmqtt/src/helpers.c"
"lwmqtt/src/packet.c"
"lwmqtt/src/string.c")

idf_component_register(SRCS ${sources}
idf_component_register(SRCS ${srcs}
INCLUDE_DIRS "." "lwmqtt/include"
REQUIRES mbedtls
)

0 comments on commit 4161c68

Please sign in to comment.