summaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorhathach <[email protected]>2023-03-30 11:37:36 +0700
committerhathach <[email protected]>2023-03-30 11:37:36 +0700
commitcf7aad790c23dd1adebd0d86ae2338a1cd64aa97 (patch)
tree53ec271a714d7291b79996c8b19537fd7bd72934 /hw
parent641613c428e10a029b172c318d4db077e35fee7d (diff)
more esp32 cmake clean up
Diffstat (limited to 'hw')
-rw-r--r--hw/bsp/espressif/boards/CMakeLists.txt8
-rw-r--r--hw/bsp/espressif/components/tinyusb_src/CMakeLists.txt10
-rw-r--r--hw/bsp/espressif/family.cmake2
3 files changed, 6 insertions, 14 deletions
diff --git a/hw/bsp/espressif/boards/CMakeLists.txt b/hw/bsp/espressif/boards/CMakeLists.txt
index a5332d715..325263c1d 100644
--- a/hw/bsp/espressif/boards/CMakeLists.txt
+++ b/hw/bsp/espressif/boards/CMakeLists.txt
@@ -1,8 +1,6 @@
+set(hw_dir "${CMAKE_CURRENT_LIST_DIR}/../../../")
+
idf_component_register(SRCS family.c
- INCLUDE_DIRS "." "${BOARD}"
+ INCLUDE_DIRS "." ${BOARD} ${hw_dir}
PRIV_REQUIRES "driver"
REQUIRES led_strip src tinyusb_src)
-
-target_include_directories(${COMPONENT_TARGET} PUBLIC
- "${TOP}/hw"
-)
diff --git a/hw/bsp/espressif/components/tinyusb_src/CMakeLists.txt b/hw/bsp/espressif/components/tinyusb_src/CMakeLists.txt
index 9aadda43d..5e0ed9ac7 100644
--- a/hw/bsp/espressif/components/tinyusb_src/CMakeLists.txt
+++ b/hw/bsp/espressif/components/tinyusb_src/CMakeLists.txt
@@ -2,9 +2,8 @@ idf_build_get_property(target IDF_TARGET)
set(srcs)
set(includes_public)
-set(includes_private)
set(compile_options)
-set(tusb_src "${TOP}/src")
+set(tusb_src "${CMAKE_CURRENT_SOURCE_DIR}/../../../../../src")
if(target STREQUAL "esp32s3")
set(tusb_mcu "OPT_MCU_ESP32S3")
@@ -25,10 +24,6 @@ list(APPEND compile_options
idf_component_get_property(freertos_component_dir freertos COMPONENT_DIR)
-list(APPEND includes_private
- "${tusb_src}"
- )
-
list(APPEND includes_public
"${tusb_src}"
# The FreeRTOS API include convention in tinyusb is different from esp-idf
@@ -54,8 +49,7 @@ list(APPEND srcs
idf_component_register(SRCS ${srcs}
INCLUDE_DIRS ${includes_public}
- PRIV_INCLUDE_DIRS ${includes_private}
- PRIV_REQUIRES src
+ REQUIRES src
)
target_compile_options(${COMPONENT_LIB} PUBLIC ${compile_options})
diff --git a/hw/bsp/espressif/family.cmake b/hw/bsp/espressif/family.cmake
index 19b9139c3..954dc635b 100644
--- a/hw/bsp/espressif/family.cmake
+++ b/hw/bsp/espressif/family.cmake
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.5)
-# Apply board specific content
+# Apply board specific content i.e IDF_TARGET must be set before project.cmake is included
include("${CMAKE_CURRENT_LIST_DIR}/boards/${BOARD}/board.cmake")
# Add example src and bsp directories