You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
320 B
Batchfile
19 lines
320 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set dir=%~dps0
|
|
if not exist %dir%cgnscheck.exe goto notfound
|
|
|
|
rem -- for path setting to dlls
|
|
if exist %dir%..\cgconfig.bat call %dir%..\cgconfig.bat
|
|
if exist %dir%cgconfig.bat call %dir%cgconfig.bat
|
|
|
|
%dir%cgnscheck -U %1 %2
|
|
goto done
|
|
|
|
:notfound
|
|
echo cgnscheck.exe not found in %dir%
|
|
:done
|
|
endlocal
|
|
|