mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-24 02:45:57 +00:00
mbedTLS include directories will now default to be in the 'app' include path when mbedTLS has been enabled. Signed-off-by: Sebastian Bøe <sebastian.boe@nordicsemi.no>
9 lines
331 B
CMake
9 lines
331 B
CMake
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
|
|
project(NONE)
|
|
|
|
target_sources( app PRIVATE src/echo-client.c)
|
|
target_sources_ifdef(CONFIG_NET_UDP app PRIVATE src/udp.c)
|
|
target_sources_ifdef(CONFIG_NET_TCP app PRIVATE src/tcp.c)
|
|
|
|
include($ENV{ZEPHYR_BASE}/samples/net/common/common.cmake)
|