File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 4545 buildType : RELEASE
4646 containerImage : ghcr.io/gafferhq/build/build:2.0.0
4747 options : .github/workflows/main/options.posix
48- dependenciesURL : https://github.com/GafferHQ/dependencies/releases/download/4 .0.0 /gafferDependencies-4 .0.0 -Python2-linux.tar.gz
48+ dependenciesURL : https://github.com/GafferHQ/dependencies/releases/download/5 .0.0a3 /gafferDependencies-5 .0.0a3 -Python2-linux.tar.gz
4949 tests : testCore testCorePython testScene testImage testAlembic testUSD testVDB testAppleseed
5050 publish : true
5151
5454 buildType : DEBUG
5555 containerImage : ghcr.io/gafferhq/build/build:2.0.0
5656 options : .github/workflows/main/options.posix
57- dependenciesURL : https://github.com/GafferHQ/dependencies/releases/download/4 .0.0 /gafferDependencies-4 .0.0 -Python2-linux.tar.gz
57+ dependenciesURL : https://github.com/GafferHQ/dependencies/releases/download/5 .0.0a3 /gafferDependencies-5 .0.0a3 -Python2-linux.tar.gz
5858 tests : testCore testCorePython testScene testImage testAlembic testUSD testVDB testAppleseed
5959 publish : false
6060
6363 buildType : RELEASE
6464 containerImage : ghcr.io/gafferhq/build/build:2.0.0
6565 options : .github/workflows/main/options.posix
66- dependenciesURL : https://github.com/GafferHQ/dependencies/releases/download/4 .0.0 /gafferDependencies-4 .0.0-Python3 -linux.tar.gz
66+ dependenciesURL : https://github.com/GafferHQ/dependencies/releases/download/5 .0.0a3 /gafferDependencies-5 .0.0a3-Python2 -linux.tar.gz
6767 tests : testCore testCorePython testScene testImage testAlembic testUSD testVDB testAppleseed
6868 publish : true
6969
7272 buildType : RELEASE
7373 containerImage :
7474 options : .github/workflows/main/options.posix
75- dependenciesURL : https://github.com/GafferHQ/dependencies/releases/download/4 .0.0 /gafferDependencies-4 .0.0 -Python2-osx.tar.gz
75+ dependenciesURL : https://github.com/GafferHQ/dependencies/releases/download/5 .0.0a3 /gafferDependencies-5 .0.0a3 -Python2-osx.tar.gz
7676 # `testAppleseed` currently omitted due to clashes with system image IO frameworks.
7777 tests : testCore testCorePython testScene testImage testAlembic testUSD testVDB
7878 publish : true
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ BOOST_LIB_SUFFIX = ""
4545
4646OPENEXR_INCLUDE_PATH = includes
4747OIIO_INCLUDE_PATH = includes
48- OIIO_LIB_PATH = libs
48+ OIIO_LIB_PATH = ""
4949OSL_INCLUDE_PATH = includes
5050BLOSC_INCLUDE_PATH = includes
5151FREETYPE_INCLUDE_PATH = includes + "/freetype2"
@@ -57,7 +57,9 @@ WITH_GL = "1"
5757GLEW_INCLUDE_PATH = includes + "/GL"
5858
5959TBB_INCLUDE_PATH = includes
60+
6061USD_INCLUDE_PATH = includes
62+ USD_LIB_PREFIX = "usd_"
6163
6264# Renderers
6365# =========
Original file line number Diff line number Diff line change @@ -1483,6 +1483,9 @@ if testEnv["TEST_LIBPATH"] != "" :
14831483 testEnvLibPath = testEnv ["TEST_LIBPATH" ] + os .pathsep + testEnvLibPath
14841484testEnvLibPath = testEnv .subst ( testEnvLibPath )
14851485
1486+ if testEnv ["PLATFORM" ] == "darwin" :
1487+ testEnvLibPath = os .pathsep .join ( [ "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Resources/" , testEnvLibPath ] )
1488+
14861489testEnv ["ENV" ][testEnv ["TEST_LIBRARY_PATH_ENV_VAR" ]] = os .pathsep .join ( [ testEnv ["ENV" ].get (testEnv ["TEST_LIBRARY_PATH_ENV_VAR" ], "" ), testEnvLibPath ] )
14871490if testEnv ["TEST_LIBRARY_PATH_ENV_VAR" ] != libraryPathEnvVar :
14881491 testEnv ["ENV" ][libraryPathEnvVar ] = os .pathsep .join ( [ testEnv ["ENV" ].get (libraryPathEnvVar , "" ), testEnvLibPath ] )
You can’t perform that action at this time.
0 commit comments