10 lines
169 B
Batchfile
10 lines
169 B
Batchfile
|
@echo off
|
||
|
|
||
|
REM (allen): quit early if we already have cl
|
||
|
where /q cl
|
||
|
IF %ERRORLEVEL% == 0 (EXIT /b)
|
||
|
|
||
|
SET SCRIPTS_PATH=%~dp0
|
||
|
"%SCRIPTS_PATH%\setup_cl_generic.bat" amd64
|
||
|
|