-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCMakeLists.txt
52 lines (42 loc) · 1.63 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
cmake_minimum_required(VERSION 3.13)
project(freertos_examples)
# add_executable(afr_workshop src/main.c)
file(GLOB SOURCES "src/*.c")
add_executable(afr_workshop ${SOURCES})
# Add workshop code and files.
include_directories(afr_workshop PRIVATE include)
# Tell IDF build to link against this target.
set(IDF_PROJECT_EXECUTABLE afr_workshop)
# Add some extra components. IDF_EXTRA_COMPONENT_DIRS is an variable used by ESP-IDF
# to collect extra components.
get_filename_component(
EXTRA_COMPONENT_DIRS
"components/dummy" ABSOLUTE
)
list(APPEND IDF_EXTRA_COMPONENT_DIRS ${EXTRA_COMPONENT_DIRS})
get_filename_component(
EXTRA_COMPONENT_DIRS
"components/afr-esp32devkitc-bsp" ABSOLUTE
)
list(APPEND IDF_EXTRA_COMPONENT_DIRS ${EXTRA_COMPONENT_DIRS})
get_filename_component(
EXTRA_COMPONENT_DIRS
"components/afr-m5stickc-bsp" ABSOLUTE
)
list(APPEND IDF_EXTRA_COMPONENT_DIRS ${EXTRA_COMPONENT_DIRS})
# As of now there's no offical way to redefine config files outside of Amazon FreeRTOS source tree.
# This is a temporary approach to inject an include path so that this takes precedence over the
# config file directory inside Amazon FreeRTOS.
include_directories(BEFORE amazon-freertos-configs)
# Add amazon freertos as an subdirectory. AFR_BOARD tells which board to target.
set(AFR_BOARD espressif.esp32_devkitc CACHE INTERNAL "")
add_subdirectory(amazon-freertos)
# Link against the mqtt demo so that we can use it. Dependencies of this demo are transitively
# linked.
target_link_libraries(afr_workshop
PRIVATE
AFR::demo_ble_numeric_comparison
AFR::demo_mqtt
AFR::shadow
AFR::demo_wifi_provisioning
)