mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
11 lines
322 B
CMake
11 lines
322 B
CMake
if(CONFIG_IDF_TARGET_ARCH_XTENSA)
|
|
list(APPEND src_dirs .)
|
|
endif()
|
|
|
|
idf_component_register(SRC_DIRS ${src_dirs}
|
|
PRIV_INCLUDE_DIRS "."
|
|
PRIV_REQUIRES cmock xtensa perfmon)
|
|
if(CONFIG_IDF_TARGET_ARCH_XTENSA)
|
|
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")
|
|
endif()
|