c33087d336
Adds support for setting user environment variables in the file %userprofile%\zephyrrc.cmd Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
7 lines
110 B
Batchfile
7 lines
110 B
Batchfile
@echo off
|
|
set ZEPHYR_BASE=%~dp0
|
|
|
|
if exist "%userprofile%\zephyrrc.cmd" (
|
|
call "%userprofile%\zephyrrc.cmd"
|
|
)
|