1if (NOT ( (FREERTOS_PLUS_TCP_NETWORK_IF STREQUAL "SH2A") ) ) 2 return() 3endif() 4 5#------------------------------------------------------------------------------ 6add_library( freertos_plus_tcp_network_if STATIC ) 7 8target_sources( freertos_plus_tcp_network_if 9 PRIVATE 10 NetworkInterface.c 11) 12 13# target_link_libraries( freertos_plus_tcp_network_if 14# PRIVATE 15# hwEthernetLib # Todo where is hwEthernet.h? 16# ) 17 18target_link_libraries( freertos_plus_tcp_network_if 19 PUBLIC 20 freertos_plus_tcp_port 21 freertos_plus_tcp_network_if_common 22 PRIVATE 23 freertos_kernel 24 freertos_plus_tcp 25) 26