Skip to content

Commit

Permalink
Pimp up default config files
Browse files Browse the repository at this point in the history
  • Loading branch information
kikou committed Feb 19, 2018
1 parent 7eee1e2 commit 9a581bd
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 deletions.
15 changes: 11 additions & 4 deletions config/custom_linux.py
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
15 changes: 11 additions & 4 deletions config/custom_windows.py
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

0 comments on commit 9a581bd

Please sign in to comment.