cmake: samples: mesh: Remove redundant CMake code

This sample is linking the 'app' with 'subsys__bluetooth', which will
add zephyr/subsys/bluetooth to the include path of the app. But this
is unnecessary as the app already has this path on it's include path.

Signed-off-by: Sebastian Bøe <sebastian.boe@nordicsemi.no>
This commit is contained in:
Sebastian Bøe 2019-01-17 14:33:32 +01:00 committed by Johan Hedberg
commit c7af520915

View file

@ -4,8 +4,6 @@ set(QEMU_EXTRA_FLAGS -s)
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
project(onoff_level_lighting_vnd_app)
target_link_libraries(app PUBLIC subsys__bluetooth)
target_sources(app PRIVATE
src/main.c
src/app_gpio.c