File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
tests/benchmarks/current_consumption/system_off Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -8,4 +8,4 @@ cmake_minimum_required(VERSION 3.20.0)
88find_package (Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE} )
99project (dmic)
1010
11- target_sources (app PRIVATE $ENV {ZEPHYR_BASE} /samples/drivers/audio/dmic/src/main.c)
11+ target_sources (app PRIVATE ${ZEPHYR_BASE} /samples/drivers/audio/dmic/src/main.c)
Original file line number Diff line number Diff line change @@ -8,4 +8,4 @@ cmake_minimum_required(VERSION 3.20.0)
88find_package (Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE} )
99project (qdec_sensor)
1010
11- target_sources (app PRIVATE $ENV {ZEPHYR_BASE} /samples/sensor/qdec/src/main.c)
11+ target_sources (app PRIVATE ${ZEPHYR_BASE} /samples/sensor/qdec/src/main.c)
Original file line number Diff line number Diff line change @@ -8,4 +8,4 @@ cmake_minimum_required(VERSION 3.20.0)
88find_package (Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE} )
99project (settings_sample)
1010
11- target_sources (app PRIVATE $ENV {ZEPHYR_BASE} /samples/subsys/settings/src/main.c)
11+ target_sources (app PRIVATE ${ZEPHYR_BASE} /samples/subsys/settings/src/main.c)
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ set(KCONFIG_ROOT $ENV{ZEPHYR_BASE}/samples/boards/nordic/system_off/Kconfig)
99find_package (Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE} )
1010project (system_off)
1111
12- target_sources (app PRIVATE $ENV {ZEPHYR_BASE} /samples/boards/nordic/system_off/src/main.c)
12+ target_sources (app PRIVATE ${ZEPHYR_BASE} /samples/boards/nordic/system_off/src/main.c)
1313if (CONFIG_APP_USE_NRF_RETENTION OR CONFIG_APP_USE_RETAINED_MEM)
14- target_sources (app PRIVATE $ENV {ZEPHYR_BASE} /samples/boards/nordic/system_off/src/retained.c)
14+ target_sources (app PRIVATE ${ZEPHYR_BASE} /samples/boards/nordic/system_off/src/retained.c)
1515endif ()
You can’t perform that action at this time.
0 commit comments