-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
22 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |