From 9a581bd3b541165e3573d617e4a52026d47ec443 Mon Sep 17 00:00:00 2001 From: Frederic Servant Date: Thu, 15 Feb 2018 21:46:27 +0000 Subject: [PATCH] Pimp up default config files --- config/custom_linux.py | 15 +++++++++++---- config/custom_windows.py | 15 +++++++++++---- 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/config/custom_linux.py b/config/custom_linux.py index da4c114..d4a4ca6 100644 --- a/config/custom_linux.py +++ b/config/custom_linux.py @@ -1,8 +1,15 @@ -WARN_LEVEL = 'warn-only' -SHCXX = r'/use/bin/gcc-4.2.4/bin/gcc-4.2.4' +# Sample configuration file for Linux +# +# Copy this file as 'custom.py' at the root of the repo if you need to customize +# the build variables + +SHCXX = r'/usr/bin/gcc-4.2.4/bin/gcc-4.2.4' + XSISDK_ROOT = r'/usr/Softimage/Softimage_2015/XSISDK' ARNOLD_HOME = r'/usr/SolidAngle/Arnold-5.0.1.1/linux' + TARGET_WORKGROUP_PATH = './Softimage_2015/Addons/SItoA' -MODE = 'opt' -SHOW_CMDS = 'True' +WARN_LEVEL = 'warn-only' # lots of warnings are expected on Linux +MODE = 'opt' +SHOW_CMDS = True diff --git a/config/custom_windows.py b/config/custom_windows.py index 4040e66..964dc2d 100644 --- a/config/custom_windows.py +++ b/config/custom_windows.py @@ -1,11 +1,18 @@ -TARGET_ARCH = 'x86_64' +# Sample configuration file for Windows +# +# Copy this file as 'custom.py' at the root of the repo if you need to customize +# the build variables +TARGET_ARCH = 'x86_64' MSVC_VERSION = '11.0' VS_HOME = r'C:/Program Files (x86)/Microsoft Visual Studio 11.0/VC' -VS_KIT = r'C:/Program Files (x86)/Windows Kits/8.0' +WINDOWS_KIT = r'C:/Program Files (x86)/Windows Kits/8.0' + XSISDK_ROOT = r'C:/Program Files/Autodesk/Softimage 2015/XSISDK' ARNOLD_HOME = r'C:/SolidAngle/Arnold-5.0.1.1/win64' + TARGET_WORKGROUP_PATH = r'./Softimage_2015/Addons/SItoA' -MODE = 'opt' -SHOW_CMDS = 'True' +WARN_LEVEL = 'strict' +MODE = 'opt' +SHOW_CMDS = True