1if (NOT ( (FREERTOS_PLUS_TCP_NETWORK_IF STREQUAL "RX") ) )
2    return()
3endif()
4
5#------------------------------------------------------------------------------
6add_library( freertos_plus_tcp_network_if STATIC )
7
8# TODO What about BufferAllocation_2.c here?
9target_sources( freertos_plus_tcp_network_if
10  PRIVATE
11    ether_callback.c
12    NetworkInterface.c
13)
14
15target_link_libraries( freertos_plus_tcp_network_if
16  PUBLIC
17    freertos_plus_tcp_port
18    freertos_plus_tcp_network_if_common
19  PRIVATE
20    freertos_kernel
21    freertos_plus_tcp
22)
23