espressif_idf-extra-components/bdc_motor/CMakeLists.txt

10 lines
261 B
CMake
Raw Normal View History

2022-08-10 08:21:54 +02:00
set(srcs "src/bdc_motor.c")
if(CONFIG_SOC_MCPWM_SUPPORTED)
list(APPEND srcs "src/bdc_motor_mcpwm_impl.c")
endif()
idf_component_register(SRCS ${srcs}
INCLUDE_DIRS "include" "interface"
PRIV_REQUIRES "driver")