1# SPDX-License-Identifier: Apache-2.0
2
3zephyr_library()
4zephyr_library_include_directories(. ${ZEPHYR_BASE}/subsys/net/ip)
5
6zephyr_library_sources_ifdef(CONFIG_NET_L2_VIRTUAL virtual.c)
7zephyr_library_sources_ifdef(CONFIG_NET_L2_VIRTUAL_MGMT virtual_mgmt.c)
8
9if(CONFIG_NET_L2_IPIP)
10  add_subdirectory(ipip)
11endif()
12