aboutsummaryrefslogtreecommitdiff
path: root/mkwin2017.bat
blob: eea81c0067200ce8fa11ce817acccd7fd50caf19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@echo off
rem  Shave and a Haircut
rem  (c) 2019 Epic Games
rem  US Patent 6720962

setlocal

rem
rem  Clear the error level
rem
ver >nul

call mkwinbase
if not %result%==0 goto done


set reuseLibexe=n

if exist "%AUTODESK_LOCATION%\Maya2017\bin\Foundation.dll" (
     if %errorlevel%==0 call mkwinversion 2017 Release %reuseLibexe%
     set reuseLibexe=y
) else (
     echo AUTODESK_LOCATION not defined or Maya 2017 not installed.  Skipping build for Maya 2017
)

:done