449a3a801a
- Introduced KnxDaliModule class for handling DALI message queuing, commissioning, and KNX group-object dispatch. - Implemented Message and MessageQueue classes for managing message operations. - Removed obsolete OpenKNX IDF component files and CMake configurations. - Updated submodule reference for KNX. Signed-off-by: Tony <tonylu@tony-cloud.com>
14 lines
363 B
CMake
14 lines
363 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
if(NOT IDF_TARGET)
|
|
set(IDF_TARGET "esp32s3" CACHE STRING "ESP-IDF target")
|
|
endif()
|
|
|
|
set(EXTRA_COMPONENT_DIRS
|
|
"${CMAKE_CURRENT_LIST_DIR}/../../components"
|
|
"${CMAKE_CURRENT_LIST_DIR}/../../knx"
|
|
"${CMAKE_CURRENT_LIST_DIR}/../../../dali_cpp"
|
|
)
|
|
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
project(gateway_app) |