Skip to content

Commit 789e741

Browse files
Merge pull request #1249 from andrewkaufman/ieConfig
IE Config : Account for no suitable appleseed
2 parents ba401ad + a7accc3 commit 789e741

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

config/ie/buildAll

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,9 @@ if platform in ( "cent7.x86_64", ) :
117117
appleseedCompilerMap[compilerVersion].append( appleseedVersion )
118118
for pythonVersion in IEEnv.activeVersions( IEEnv.registry["apps"]["python"] ) :
119119
build( [ "COMPILER_VERSION="+compilerVersion, "PYTHON_VERSION="+pythonVersion, "APPLESEED_VERSION="+appleseedVersion, "DL_VERSION=UNDEFINED" ] )
120+
for appleseedCompiler, versions in appleseedCompilerMap.items() :
121+
if len(versions) == 0 :
122+
appleseedCompilerMap[appleseedCompiler].append( "UNDEFINED" )
120123

121124
for mayaVersion in IEEnv.activeAppVersions( "maya" ) :
122125
compilerVersion = IEEnv.registry["apps"]["maya"][mayaVersion][platform]["compilerVersion"]

0 commit comments

Comments
 (0)