Created
September 5, 2016 18:48
-
-
Save salvaom/db3c960519f445dd0ab4a06577106e29 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
'tool': 'maya', | |
'version': '2014', | |
'platforms': ['windows', 'linux', 'darwin'], | |
'requires': [], | |
'environment': | |
{ | |
'MAYA_VERSION': '2014', | |
'MAYA_LOCATION': { | |
'darwin': '/Applications/Autodesk/maya${MAYA_VERSION}/Maya.app/Contents', | |
'linux': '/usr/autodesk/maya${MAYA_VERSION}-x64', | |
'windows': 'C:/Program Files/Autodesk/Maya${MAYA_VERSION}', | |
}, | |
'PATH': { | |
'darwin': '${MAYA_LOCATION}/bin', | |
'linux': '${MAYA_LOCATION}/bin', | |
'windows': '${MAYA_LOCATION}/bin;C:/Program Files/Common Files/Autodesk Shared/;C:/Program Files (x86)/Autodesk/Backburner/', | |
}, | |
'DYLD_LIBRARY_PATH': { | |
'darwin': '${MAYA_LOCATION}/MacOS', | |
}, | |
}, | |
'optional': { | |
'dev': | |
{ | |
'MAYA_DEV_BUILDS': { | |
'common': '${DEV_BUILDS}', | |
'abs': ['windows', 'linux', ], | |
}, | |
'PATH': { | |
'darwin': '${MAYA_DEV_BUILDS}', | |
'linux': '${MAYA_DEV_BUILDS}', | |
'windows': '${MAYA_DEV_BUILDS}', | |
}, | |
'MAYA_SCRIPT_PATH': '${MAYA_DEV_BUILDS}/mel', | |
'MAYA_SHELF_PATH': '${MAYA_DEV_BUILDS}/shelves', | |
'XBMLANGPATH': '${MAYA_DEV_BUILDS}/icons', | |
'MAYA_PLUG_IN_PATH': '${MAYA_DEV_BUILDS}', | |
'MI_CUSTOM_SHADER_PATH': '${MAYA_DEV_BUILDS}', | |
}, | |
}, | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
'tool': 'vray', | |
'version': '3.05', | |
'platforms': ['windows', 'linux', 'darwin'], | |
'requires': ['maya'], | |
'environment': | |
{ | |
'VRAY_ROOT': { | |
'windows': '${SOFTWARE_BASE}/maya/vray/win/${MAYA_VERSION}/${VRAY_VERSION}' | |
}, | |
'VRAY_VERSION': '3.05', | |
'VRAY_PATH': '${VRAY_ROOT}/maya_vray', | |
'VRAY_FOR_MAYA2012_MAIN_x64': '${VRAY_PATH}', | |
'VRAY_TOOLS_MAYA2012_x64': '${VRAY_PATH}', | |
'VRAY_FOR_MAYA2012_PLUGINS_x64': '${VRAY_PATH}/vrayplugins', | |
'VRAY_FOR_MAYA2013_MAIN_x64': '${VRAY_PATH}', | |
'VRAY_TOOLS_MAYA2013_x64': '${VRAY_PATH}', | |
'VRAY_FOR_MAYA2013_PLUGINS_x64': '${VRAY_PATH}/vrayplugins', | |
'VRAY_FOR_MAYA2014_MAIN_x64': '${VRAY_PATH}', | |
'VRAY_TOOLS_MAYA2014_x64': '${VRAY_PATH}', | |
'VRAY_FOR_MAYA2014_PLUGINS_x64': '${VRAY_PATH}/vrayplugins', | |
'VRAY_FOR_MAYA2015_MAIN_x64': '${VRAY_PATH}', | |
'VRAY_TOOLS_MAYA2015_x64': '${VRAY_PATH}', | |
'VRAY_FOR_MAYA2015_PLUGINS_x64': '${VRAY_PATH}/vrayplugins', | |
'VRAY_PLUGINS_x64': '${VRAY_PATH}/vrayplugins', | |
'VRAY_OSL_PATH_MAYA2014_x64': '${VRAY_ROOT}/vray/include/opensl', | |
'VRAY_OSL_PATH_MAYA2015_x64': '${VRAY_ROOT}/vray/include/opensl', | |
}, | |
'optional': { | |
'dev': | |
{ | |
'VRAY_FOR_MAYA2012_PLUGINS_x64': '${DEV_BUILDS}', | |
'VRAY_FOR_MAYA2013_PLUGINS_x64': '${DEV_BUILDS}', | |
'VRAY_FOR_MAYA2014_PLUGINS_x64': '${DEV_BUILDS}', | |
'VRAY_FOR_MAYA2015_PLUGINS_x64': '${DEV_BUILDS}', | |
'VRAY_PLUGINS_x64': '${DEV_BUILDS}', | |
}, | |
'maya': | |
{ | |
'MAYA_SCRIPT_PATH': '${VRAY_PATH}/scripts', | |
'MAYA_ICON_PATH': '${VRAY_PATH}/icons', | |
'XBMLANGPATH': '${VRAY_PATH}/icons', | |
'MAYA_PLUG_IN_PATH': '${VRAY_PATH}/plug-ins', | |
'DYLD_LIBRARY_PATH': { | |
'darwin': '${VRAY_ROOT}/maya_root/lib', | |
}, | |
'LD_LIBRARY_PATH': { | |
'linux': '${VRAY_ROOT}/maya_root/lib', | |
}, | |
'PATH': { | |
'windows': '${VRAY_ROOT}/maya_root/bin', | |
}, | |
}, | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment