4coder/custom/bin/setup_cl_x64.bat

10 lines
167 B
Batchfile
Raw Normal View History

2017-06-22 23:16:04 +00:00
@echo off
REM (allen): quit early if we already have cl
where /q cl
IF %ERRORLEVEL% == 0 (EXIT /b)
2017-06-22 23:39:14 +00:00
SET SCRIPTS_PATH=%~dp0
%SCRIPTS_PATH%\setup_cl_generic.bat amd64
2017-06-22 23:16:04 +00:00