10 lines
435 B
CMake
10 lines
435 B
CMake
set(sources src/msc_scsi_bot.c
|
|
src/diskio_usb.c
|
|
src/msc_host.c
|
|
src/msc_host_vfs.c)
|
|
|
|
idf_component_register( SRCS ${sources}
|
|
INCLUDE_DIRS include include/usb # 'include/usb' is here for backwards compatibility
|
|
PRIV_INCLUDE_DIRS private_include include/esp_private
|
|
REQUIRES usb fatfs
|
|
PRIV_REQUIRES heap )
|