samples and tests: Use non-environmental zephyr base variable

This drops using the environmental part when referencing ZEPHYR_BASE
as the environment value does not have to be set and, in most cases,
is no longer set at all.

Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
This commit is contained in:
Jamie McCrae 2023-03-01 13:18:21 +00:00 committed by Carles Cufí
commit 0bad35de45
48 changed files with 166 additions and 165 deletions

View file

@ -7,4 +7,4 @@ project(central_ht)
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})
zephyr_library_include_directories($ENV{ZEPHYR_BASE}/samples/bluetooth)
zephyr_library_include_directories(${ZEPHYR_BASE}/samples/bluetooth)