mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-15 10:41:56 +00:00
There is an mcr20a shield board for frdm_k64f which is easier to use than wiring a cc2520 by hand. So let's remove this. Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
15 lines
249 B
CMake
15 lines
249 B
CMake
# Common routines used in net samples
|
|
|
|
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()
|