16 lines
311 B
CMake
16 lines
311 B
CMake
# LwIP port for STM32F407VET6
|
|
|
|
# Add port sources to lwip library
|
|
target_sources(lwip PRIVATE
|
|
sys_arch.c
|
|
ethernetif.c
|
|
)
|
|
|
|
# Add include directories for port
|
|
target_include_directories(lwip PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
../../../../HAL/Inc
|
|
../../../../BSP/Inc
|
|
../../../../Core/Inc
|
|
)
|