mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-06 07:51:56 +00:00
The QEMU_NET_STACK is enabled automatically if building a networking application to QEMU so no need to do it for each networking sample. Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
15 lines
352 B
CMake
15 lines
352 B
CMake
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
|
|
project(NONE)
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
target_sources(app PRIVATE ${app_sources})
|
|
|
|
if(CONFIG_NET_TESTING)
|
|
target_include_directories(app PRIVATE
|
|
$ENV{ZEPHYR_BASE}/samples/net/common
|
|
)
|
|
target_compile_definitions(app PRIVATE
|
|
NET_TESTING_SERVER=1
|
|
)
|
|
endif()
|