blob: 15271ecf8b3ecd701670317762dee34148e45001 (
plain) (
tree)
|
|
@setlocal enabledelayedexpansion
@echo off
if [%root%] == [] goto :env_not_set
if [%bin_root%] == [] goto :env_not_set
if [%lib_root%] == [] goto :env_not_set
if [%src_root%] == [] goto :env_not_set
exit /b 0
:env_not_set
echo Error: either %%root%%, %%bin_root%%, %%lib_root%% or %%src_root%% are not set ^(perhaps you forgot to call setenv.bat^)
exit /b 1
|