2019-04-28 07:38:23 +00:00
|
|
|
idf_component_register(SRCS "vfs.c"
|
|
|
|
"vfs_uart.c"
|
|
|
|
"vfs_semihost.c"
|
|
|
|
INCLUDE_DIRS include)
|
2019-04-15 03:45:08 +00:00
|
|
|
|
2020-04-30 14:36:20 +00:00
|
|
|
if(CONFIG_ESP_CONSOLE_USB_CDC)
|
|
|
|
target_sources(${COMPONENT_LIB} PRIVATE "vfs_cdcacm.c")
|
|
|
|
endif()
|
|
|
|
|
2019-04-15 03:45:08 +00:00
|
|
|
# Some newlib syscalls are implemented in vfs.c, make sure these are always
|
|
|
|
# seen by the linker
|
2019-06-04 11:05:33 +00:00
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u vfs_include_syscalls_impl")
|