zephyr/samples/net/sockets/coap_server/CMakeLists.txt
Robert Lubos fd2fa54aa7 samples: net: Add Wi-Fi snippet support for networking samples
Make use of wifi-ipv4 snippet in several networking samples.

Signed-off-by: Robert Lubos <robert.lubos@nordicsemi.no>
2024-10-08 16:58:20 +02:00

21 lines
620 B
CMake

# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(coap_server)
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})
target_include_directories(app PRIVATE ${ZEPHYR_BASE}/subsys/net/ip)
# Support LD linker template
zephyr_linker_sources(DATA_SECTIONS sections-ram.ld)
# Support CMake linker generator
zephyr_iterable_section(
NAME coap_resource_coap_server
GROUP DATA_REGION ${XIP_ALIGN_WITH_INPUT}
SUBALIGN ${CONFIG_LINKER_ITERABLE_SUBALIGN})
include(${ZEPHYR_BASE}/samples/net/common/common.cmake)