Skip to content

Commit

Permalink
ie/options : Update config to enable dcc testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanimanishi committed Nov 6, 2024
1 parent e28e158 commit 5c259f3
Showing 1 changed file with 21 additions and 25 deletions.
46 changes: 21 additions & 25 deletions config/ie/options
Original file line number Diff line number Diff line change
Expand Up @@ -366,31 +366,18 @@ VDB_INCLUDE_PATH = os.path.join(
VDB_LIB_PATH = os.path.join(
"/software", "apps", "OpenVDB", vdbVersion, platform, compiler, compilerVersion, "lib"
)
if LooseVersion(vdbVersion) < LooseVersion("10") and targetApp:
VDB_PYTHON_PATH = os.path.join(
"/software",
"apps",
"OpenVDB",
vdbVersion,
platform,
compiler,
compilerVersion,
"python",
"lib",
"python" + pythonVersion,
)

else:
VDB_PYTHON_PATH = os.path.join(
"/software",
"apps",
"OpenVDB",
vdbVersion,
platform,
compiler,
compilerVersion,
"python",
)
VDB_PYTHON_PATH = os.path.join(
"/software",
"apps",
"OpenVDB",
vdbVersion,
platform,
compiler,
compilerVersion,
"python",
"lib",
"python" + pythonVersion,
)


PYBIND11_INCLUDE_PATH = os.path.join(
Expand Down Expand Up @@ -513,6 +500,15 @@ if targetApp == "nuke":
nukeReg = IEEnv.registry["apps"]["nuke"][nukeVersion][platform]
NUKE_ROOT = nukeReg["location"]
NUKE_LICENSE_FILE = nukeReg["wrapperEnvVars"]["foundry_LICENSE"]
USG_SHIMLIB_PATH = os.path.join(
"/software",
"apps",
"FnUsdShim",
nukeReg["compatibilityVersion"],
platform,
compiler,
compilerVersion,
)
INSTALL_NUKELIB_NAME = os.path.join(appPrefix, "lib", "$IECORE_NAME{}".format(ieCoreLibSuffix))
INSTALL_NUKEPYTHON_DIR = os.path.join(appPrefix, "python")
INSTALL_NUKEICON_DIR = os.path.join(appPrefix, "icons")
Expand Down

0 comments on commit 5c259f3

Please sign in to comment.