-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
52 lines (42 loc) · 1.96 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
51
52
# The following lines of boilerplate have to be in your project's
# CMakeLists in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.29)
# if(NOT DEFINED ENV{ESP_MATTER_PATH})
# message(FATAL_ERROR "Please set ESP_MATTER_PATH to the path of esp-matter repo")
# endif(NOT DEFINED ENV{ESP_MATTER_PATH})
# if(NOT DEFINED ENV{ESP_MATTER_DEVICE_PATH})
# if("${IDF_TARGET}" STREQUAL "esp32c6" OR "${IDF_TARGET}" STREQUAL "")
# set(ENV{ESP_MATTER_DEVICE_PATH} $ENV{ESP_MATTER_PATH}/device_hal/device/esp32c6_devkit_c)
# else()
# message(FATAL_ERROR "Unsupported IDF_TARGET")
# endif()
# endif(NOT DEFINED ENV{ESP_MATTER_DEVICE_PATH})
set(PROJECT_VER "1.0")
set(PROJECT_VER_NUMBER 1)
# set(ESP_MATTER_PATH $ENV{ESP_MATTER_PATH})
# set(MATTER_SDK_PATH ${ESP_MATTER_PATH}/connectedhomeip/connectedhomeip)
# This should be done before using the IDF_TARGET variable.
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
# include($ENV{ESP_MATTER_DEVICE_PATH}/esp_matter_device.cmake)
# set(EXTRA_COMPONENT_DIRS
# "${ESP_MATTER_PATH}/examples/common"
# "${MATTER_SDK_PATH}/config/esp32/components"
# "${ESP_MATTER_PATH}/components"
# "${ESP_MATTER_PATH}/device_hal/device"
# ${extra_components_dirs_append})
set(EXTRA_COMPONENT_DIRS
${extra_components_dirs_append})
project(light)
# WARNING: This is just an example for using key for decrypting the encrypted OTA image
# Please do not use it as is.
if(CONFIG_ENABLE_ENCRYPTED_OTA)
target_add_binary_data(light.elf "esp_image_encryption_key.pem" TEXT)
endif()
if(CONFIG_IDF_TARGET_ESP32C2)
include(relinker)
endif()
idf_build_set_property(CXX_COMPILE_OPTIONS "-std=gnu++17;-Os;-DCHIP_HAVE_CONFIG_H" APPEND)
idf_build_set_property(C_COMPILE_OPTIONS "-Os" APPEND)
# For RISCV chips, project_include.cmake sets -Wno-format, but does not clear various
# flags that depend on -Wformat
idf_build_set_property(COMPILE_OPTIONS "-Wno-format-nonliteral;-Wno-format-security" APPEND)