This repository has been archived on 2023-07-17. You can view files and clone it, but cannot push or open issues or pull requests.
bl_mcu_sdk/examples/emac/lwip_tcp/CMakeLists.txt

12 lines
337 B
CMake

set(BSP_COMMON_DIR ${CMAKE_SOURCE_DIR}/bsp/bsp_common)
set(TARGET_REQUIRED_PRIVATE_INCLUDE ${BSP_COMMON_DIR}/ethernet)
set(TARGET_REQUIRED_SRCS ${BSP_COMMON_DIR}/ethernet/ethernetif.c ${BSP_COMMON_DIR}/ethernet/emac_phy.c
tcp_server.c
tcp_client.c)
set(TARGET_REQUIRED_LIBS freertos lwip)
set(mains main.c )
generate_bin()