zephyr/subsys/net/lib/shell/CMakeLists.txt
Robert Lubos 2c70c5d74a net: shell: Implement DHCPv4 server shell commands
Implement DHCPv4 shell module, which allows to start/stop DHCPv4 server
operation, and print server status (address leases).

Signed-off-by: Robert Lubos <robert.lubos@nordicsemi.no>
2024-01-19 10:15:23 +00:00

35 lines
1.1 KiB
CMake

# SPDX-License-Identifier: Apache-2.0
zephyr_library_sources(net_shell.c)
zephyr_library_include_directories(. ${ZEPHYR_BASE}/subsys/net/l2)
zephyr_library_include_directories(. ${ZEPHYR_BASE}/subsys/net/lib)
zephyr_library_include_directories(. ${ZEPHYR_BASE}/subsys/net/ip)
zephyr_library_link_libraries_ifdef(CONFIG_MBEDTLS mbedTLS)
zephyr_library_sources(allocs.c)
zephyr_library_sources(arp.c)
zephyr_library_sources(capture.c)
zephyr_library_sources(conn.c)
zephyr_library_sources(dhcpv4.c)
zephyr_library_sources(dns.c)
zephyr_library_sources(events.c)
zephyr_library_sources(gptp.c)
zephyr_library_sources(iface.c)
zephyr_library_sources(ipv4.c)
zephyr_library_sources(ipv6.c)
zephyr_library_sources(mem.c)
zephyr_library_sources(nbr.c)
zephyr_library_sources(ping.c)
zephyr_library_sources(pkt.c)
zephyr_library_sources(ppp.c)
zephyr_library_sources(resume.c)
zephyr_library_sources(route.c)
zephyr_library_sources(sockets.c)
zephyr_library_sources(stats.c)
zephyr_library_sources(suspend.c)
zephyr_library_sources(tcp.c)
zephyr_library_sources(udp.c)
zephyr_library_sources(virtual.c)
zephyr_library_sources(vlan.c)
zephyr_library_sources(websocket.c)