rp2040/component/eth/CMakeLists.txt

9 lines
168 B
CMake
Raw Normal View History

2025-03-15 17:54:38 +08:00
file(GLOB FILELIST
udp.c
)
set(TARGET eth)
add_library(${TARGET} STATIC ${FILELIST})
target_include_directories(${TARGET} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})