Skip to content

Commit 7c28613

Browse files
committed
Updating IE build options.
Removed dead platforms. Using active Maya versions
1 parent 8560cd9 commit 7c28613

File tree

1 file changed

+3
-33
lines changed

1 file changed

+3
-33
lines changed

config/ie/buildAll

+3-33
Original file line numberDiff line numberDiff line change
@@ -52,45 +52,15 @@ def installDocs() :
5252

5353
raise RuntimeError("Error : scons installDoc " + str( " ".join( buildArgs ) ) )
5454

55-
if IEEnv.platformOS() == "osx104" or IEEnv.platformOS() == "osx105" :
56-
57-
if os.path.exists( ".sconsign.dblite" ) :
58-
59-
os.remove( ".sconsign.dblite" )
60-
61-
if os.path.exists( ".sconf_temp" ) :
62-
63-
shutil.rmtree( ".sconf_temp" )
64-
65-
build()
66-
67-
installDocs()
68-
69-
elif IEEnv.platform() == "cent5.x86_64" :
70-
71-
build( [ "COMPILER_VERSION=4.1.2", "DL_VERSION=UNDEFINED", "PYTHON_VERSION=2.6", "ARNOLD_VERSION=4.0.9.1" ] )
72-
73-
for dlVersion in IEEnv.activeVersions( IEEnv.registry["apps"]["3delight"] ):
74-
build( [ "COMPILER_VERSION=4.1.2", "DL_VERSION="+dlVersion, "PYTHON_VERSION=2.6", "ARNOLD_VERSION=UNDEFINED" ] )
75-
76-
build( [ "APP=maya", "APP_VERSION=2012.sp1", "DL_VERSION=10.0.62", "ARNOLD_VERSION=4.0.9.1" ] )
77-
78-
for nukeVersion in IEEnv.activeAppVersions( "nuke" ) :
79-
build( [ "APP=nuke", "APP_VERSION="+nukeVersion ] )
80-
81-
for houdiniVersion in IEEnv.activeAppVersions( "houdini" ) :
82-
build( [ "APP=houdini", "APP_VERSION="+houdiniVersion ] )
83-
84-
installDocs()
85-
86-
elif IEEnv.platform() == "cent6.x86_64" :
55+
if IEEnv.platform() == "cent6.x86_64" :
8756

8857
build( [ "COMPILER_VERSION=4.1.2", "DL_VERSION=UNDEFINED", "PYTHON_VERSION=2.6", "ARNOLD_VERSION=4.0.9.1" ] )
8958

9059
for dlVersion in IEEnv.activeVersions( IEEnv.registry["apps"]["3delight"] ):
9160
build( [ "COMPILER_VERSION=4.1.2", "DL_VERSION="+dlVersion, "PYTHON_VERSION=2.6", "ARNOLD_VERSION=UNDEFINED" ] )
9261

93-
build( [ "APP=maya", "APP_VERSION=2013", "DL_VERSION=10.0.142", "ARNOLD_VERSION=4.0.9.1" ] )
62+
for mayaVersion in IEEnv.activeAppVersions( "maya" ) :
63+
build( [ "APP=maya", "APP_VERSION="+mayaVersion, "DL_VERSION=10.0.142", "ARNOLD_VERSION=4.0.9.1" ] )
9464

9565
for nukeVersion in IEEnv.activeAppVersions( "nuke" ) :
9666
build( [ "APP=nuke", "APP_VERSION="+nukeVersion ] )

0 commit comments

Comments
 (0)