mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 11:03:05 +00:00
96 lines
4.8 KiB
CMake
96 lines
4.8 KiB
CMake
set(SRC_DIRS_LIST "."
|
|
"utils"
|
|
"${MATTER_SDK_PATH}/zzz_generated/app-common/app-common/zap-generated/attributes"
|
|
)
|
|
|
|
set(INCLUDE_DIRS_LIST "."
|
|
"utils"
|
|
"data_model_provider"
|
|
"${MATTER_SDK_PATH}/zzz_generated/app-common"
|
|
"${MATTER_SDK_PATH}/third_party/nlfaultinjection/include"
|
|
"${MATTER_SDK_PATH}/src")
|
|
|
|
set(PRIV_INCLUDE_DIRS_LIST )
|
|
|
|
if (CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER)
|
|
list(APPEND SRC_DIRS_LIST "${MATTER_SDK_PATH}/src/app/server"
|
|
"${MATTER_SDK_PATH}/src/app/reporting"
|
|
"${MATTER_SDK_PATH}/src/app/persistence"
|
|
"${MATTER_SDK_PATH}/src/app/server-cluster")
|
|
if (CONFIG_ESP_MATTER_ENABLE_DATA_MODEL)
|
|
include("utils/cluster_select/cluster_dir.cmake")
|
|
get_supported_cluster_dirs(SUPPORTED_CLUSTER_DIRS)
|
|
foreach(CLUSTER_DIR ${SUPPORTED_CLUSTER_DIRS})
|
|
# If the cluster directory has .c/.cpp file, add it to SRC_DIRS_LIST
|
|
file(GLOB C_CPP_FILES "${CLUSTER_DIR}/*.c" "${CLUSTER_DIR}/*.cpp")
|
|
if (C_CPP_FILES)
|
|
list(APPEND SRC_DIRS_LIST "${CLUSTER_DIR}")
|
|
endif()
|
|
file(GLOB_RECURSE CODEGEN_FILES "${CLUSTER_DIR}/Codegen*.cpp")
|
|
if (CODEGEN_FILES)
|
|
list(APPEND EXCLUDE_SRCS_LIST ${CODEGEN_FILES})
|
|
endif()
|
|
endforeach()
|
|
|
|
list(APPEND SRC_DIRS_LIST "${MATTER_SDK_PATH}/src/app/clusters/on-off-server/codegen"
|
|
"${MATTER_SDK_PATH}/src/app/clusters/level-control/codegen")
|
|
|
|
file(GLOB ESP_MATTER_CLUSTER_DIRS_LIST "data_model_provider/clusters/*")
|
|
foreach(ESP_MATTER_CLUSTER_DIR ${ESP_MATTER_CLUSTER_DIRS_LIST})
|
|
list(APPEND SRC_DIRS_LIST ${ESP_MATTER_CLUSTER_DIR})
|
|
endforeach()
|
|
|
|
list(APPEND SRC_DIRS_LIST "data_model"
|
|
"data_model_provider"
|
|
"data_model/private")
|
|
list(APPEND INCLUDE_DIRS_LIST "zap_common"
|
|
"data_model")
|
|
list(APPEND PRIV_INCLUDE_DIRS_LIST "data_model/private")
|
|
endif(CONFIG_ESP_MATTER_ENABLE_DATA_MODEL)
|
|
else()
|
|
list(APPEND EXCLUDE_SRCS_LIST "esp_matter_identify.cpp"
|
|
"esp_matter_ota.cpp")
|
|
endif(CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER)
|
|
|
|
|
|
|
|
set(REQUIRES_LIST chip bt esp_matter_console nvs_flash app_update esp_secure_cert_mgr mbedtls esp_system openthread json)
|
|
|
|
idf_component_register( SRC_DIRS ${SRC_DIRS_LIST}
|
|
INCLUDE_DIRS ${INCLUDE_DIRS_LIST}
|
|
EXCLUDE_SRCS ${EXCLUDE_SRCS_LIST}
|
|
PRIV_INCLUDE_DIRS ${PRIV_INCLUDE_DIRS_LIST}
|
|
REQUIRES ${REQUIRES_LIST})
|
|
|
|
# This has been added to fix the error and should be removed once fixed:
|
|
# esp-matter/connectedhomeip/connectedhomeip/src/app/EventManagement.cpp:467:23: error: 'writer' is
|
|
# used uninitialized in this function
|
|
idf_build_set_property(COMPILE_OPTIONS "-Wno-error=uninitialized;-Wno-error=maybe-uninitialized;-Wno-missing-field-initializers;" APPEND)
|
|
idf_build_set_property(COMPILE_OPTIONS "-Wno-error=array-bounds" APPEND)
|
|
|
|
if (CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER)
|
|
if (CONFIG_ESP_MATTER_ENABLE_DATA_MODEL)
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u data_model_utils_impl")
|
|
else()
|
|
target_include_directories(${COMPONENT_LIB} PUBLIC "${CMAKE_BINARY_DIR}/gen/__idf_main-codegen/cpp-app"
|
|
"${CMAKE_BINARY_DIR}/gen/__idf_main-zapgen/zapgen/app-templates")
|
|
endif(CONFIG_ESP_MATTER_ENABLE_DATA_MODEL)
|
|
endif(CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER)
|
|
|
|
target_sources(${COMPONENT_LIB} PRIVATE ${MATTER_SDK_PATH}/src/app/StorageDelegateWrapper.cpp
|
|
${MATTER_SDK_PATH}/src/app/SafeAttributePersistenceProvider.cpp)
|
|
|
|
# For Xtensa chips, uint32_t was defined as 'unsigned' before v5.0, and after IDF v5.0 it is defined
|
|
# as 'unsigned long', same as RISC-V. add this compile option to avoid format errors.
|
|
# https://github.com/espressif/esp-idf/issues/6906#issuecomment-1207373706
|
|
if (CONFIG_IDF_TARGET_ARCH_XTENSA AND (${IDF_VERSION_MAJOR} LESS 5))
|
|
idf_build_set_property(COMPILE_OPTIONS "-Wno-format" APPEND)
|
|
endif()
|
|
target_compile_options(${COMPONENT_LIB} PUBLIC
|
|
"-DCHIP_ADDRESS_RESOLVE_IMPL_INCLUDE_HEADER=<lib/address_resolve/AddressResolve_DefaultImpl.h>")
|
|
|
|
# Time sync client feature depends on read client, disable it when read client is disabled.
|
|
if (CONFIG_DISABLE_READ_CLIENT)
|
|
target_compile_options(${COMPONENT_LIB} PUBLIC "-DTIME_SYNC_ENABLE_TSC_FEATURE=0")
|
|
endif()
|