zephyr/samples/net/common/common.cmake
Tomasz Bursztyka eae1ed8f2b samples/net: Removing support of cc2520 on frdm_k64f
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>
2018-11-09 05:25:11 -06:00

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()