As discussed during DHCPv4 server integration, group DHCPv4 client files with DHCPv4 server in a single lib directory. Renamed internal "dhcpv4.h" header to "dhcpv4_internal.h" so that it's not confused with the public "dhcpv4.h" header. Signed-off-by: Robert Lubos <robert.lubos@nordicsemi.no>
11 lines
299 B
CMake
11 lines
299 B
CMake
# Copyright (c) 2024 Nordic Semiconductor ASA
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_library()
|
|
|
|
zephyr_library_include_directories(${ZEPHYR_BASE}/subsys/net/ip)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_NET_DHCPV4 dhcpv4.c)
|
|
zephyr_library_sources_ifdef(CONFIG_NET_DHCPV4_SERVER dhcpv4_server.c)
|