Files
esp-idf/components/vfs/host_test/main/CMakeLists.txt
T
2025-11-05 09:49:21 +01:00

11 lines
370 B
CMake

set(src "test_vfs.c" "test_vfs_linux_dev.c")
idf_component_register(SRCS ${src}
INCLUDE_DIRS .
PRIV_REQUIRES vfs unity
WHOLE_ARCHIVE
)
# dlsym is used to dynamically link native Linux platform functions during test execution
target_link_libraries(${COMPONENT_LIB} PRIVATE dl)