├── .github └── workflows │ ├── main.yml │ └── main │ ├── publishRelease.py │ └── setBuildVars.py ├── .gitignore ├── Alembic └── config.py ├── BitstreamVera └── config.py ├── Blosc └── config.py ├── Boost └── config.py ├── CMark └── config.py ├── Changes.md ├── Cortex └── config.py ├── Cycles ├── config.py └── patches │ └── cudaBinaries.patch ├── Embree └── config.py ├── Expat └── config.py ├── Fmt └── config.py ├── FreeType └── config.py ├── GLEW └── config.py ├── GafferResources └── config.py ├── HDF5 └── config.py ├── Imath └── config.py ├── Jemalloc ├── config.py └── patches │ └── tlsModel.patch ├── Jinja2 └── config.py ├── LLVM └── config.py ├── LZ4 └── config.py ├── LibFFI └── config.py ├── LibJPEG-Turbo └── config.py ├── LibPNG └── config.py ├── LibRaw └── config.py ├── LibTIFF └── config.py ├── LibWebP └── config.py ├── MarkupSafe └── config.py ├── MaterialX ├── config.py └── patches │ ├── config.patch │ └── pythonLibrariesConfig.patch ├── Minizip ├── config.py └── patches │ └── version.patch ├── OpenColorIO └── config.py ├── OpenEXR └── config.py ├── OpenImageIO └── config.py ├── OpenJPEG └── config.py ├── OpenPGL └── config.py ├── OpenShadingLanguage ├── config.py └── patches │ └── batchedLinkingFix.patch ├── OpenSubdiv └── config.py ├── OpenVDB └── config.py ├── PCG └── config.py ├── PsUtil └── config.py ├── PugiXML └── config.py ├── PyBind11 └── config.py ├── PyOpenGL └── config.py ├── PySide ├── config.py └── patches │ └── removePackaging.patch ├── PyString └── config.py ├── Python └── config.py ├── Qt.py └── config.py ├── Qt ├── config.py └── patches │ ├── QTabBar-draw-text-within-moving-tab.patch │ ├── QTabBarPrivate-setupMovableTab-fix-initialization-of.patch │ └── cmakeBuildPaths.patch ├── README.md ├── TBB ├── config.py └── patches │ └── arm64.patch ├── USD └── config.py ├── YAML-CPP └── config.py ├── ZLib └── config.py └── Zstandard └── config.py /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/main/publishRelease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/.github/workflows/main/publishRelease.py -------------------------------------------------------------------------------- /.github/workflows/main/setBuildVars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/.github/workflows/main/setBuildVars.py -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | working 2 | */archives 3 | .vscode -------------------------------------------------------------------------------- /Alembic/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Alembic/config.py -------------------------------------------------------------------------------- /BitstreamVera/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/BitstreamVera/config.py -------------------------------------------------------------------------------- /Blosc/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Blosc/config.py -------------------------------------------------------------------------------- /Boost/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Boost/config.py -------------------------------------------------------------------------------- /CMark/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/CMark/config.py -------------------------------------------------------------------------------- /Changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Changes.md -------------------------------------------------------------------------------- /Cortex/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Cortex/config.py -------------------------------------------------------------------------------- /Cycles/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Cycles/config.py -------------------------------------------------------------------------------- /Cycles/patches/cudaBinaries.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Cycles/patches/cudaBinaries.patch -------------------------------------------------------------------------------- /Embree/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Embree/config.py -------------------------------------------------------------------------------- /Expat/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Expat/config.py -------------------------------------------------------------------------------- /Fmt/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Fmt/config.py -------------------------------------------------------------------------------- /FreeType/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/FreeType/config.py -------------------------------------------------------------------------------- /GLEW/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/GLEW/config.py -------------------------------------------------------------------------------- /GafferResources/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/GafferResources/config.py -------------------------------------------------------------------------------- /HDF5/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/HDF5/config.py -------------------------------------------------------------------------------- /Imath/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Imath/config.py -------------------------------------------------------------------------------- /Jemalloc/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Jemalloc/config.py -------------------------------------------------------------------------------- /Jemalloc/patches/tlsModel.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Jemalloc/patches/tlsModel.patch -------------------------------------------------------------------------------- /Jinja2/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Jinja2/config.py -------------------------------------------------------------------------------- /LLVM/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/LLVM/config.py -------------------------------------------------------------------------------- /LZ4/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/LZ4/config.py -------------------------------------------------------------------------------- /LibFFI/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/LibFFI/config.py -------------------------------------------------------------------------------- /LibJPEG-Turbo/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/LibJPEG-Turbo/config.py -------------------------------------------------------------------------------- /LibPNG/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/LibPNG/config.py -------------------------------------------------------------------------------- /LibRaw/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/LibRaw/config.py -------------------------------------------------------------------------------- /LibTIFF/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/LibTIFF/config.py -------------------------------------------------------------------------------- /LibWebP/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/LibWebP/config.py -------------------------------------------------------------------------------- /MarkupSafe/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/MarkupSafe/config.py -------------------------------------------------------------------------------- /MaterialX/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/MaterialX/config.py -------------------------------------------------------------------------------- /MaterialX/patches/config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/MaterialX/patches/config.patch -------------------------------------------------------------------------------- /MaterialX/patches/pythonLibrariesConfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/MaterialX/patches/pythonLibrariesConfig.patch -------------------------------------------------------------------------------- /Minizip/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Minizip/config.py -------------------------------------------------------------------------------- /Minizip/patches/version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Minizip/patches/version.patch -------------------------------------------------------------------------------- /OpenColorIO/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/OpenColorIO/config.py -------------------------------------------------------------------------------- /OpenEXR/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/OpenEXR/config.py -------------------------------------------------------------------------------- /OpenImageIO/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/OpenImageIO/config.py -------------------------------------------------------------------------------- /OpenJPEG/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/OpenJPEG/config.py -------------------------------------------------------------------------------- /OpenPGL/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/OpenPGL/config.py -------------------------------------------------------------------------------- /OpenShadingLanguage/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/OpenShadingLanguage/config.py -------------------------------------------------------------------------------- /OpenShadingLanguage/patches/batchedLinkingFix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/OpenShadingLanguage/patches/batchedLinkingFix.patch -------------------------------------------------------------------------------- /OpenSubdiv/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/OpenSubdiv/config.py -------------------------------------------------------------------------------- /OpenVDB/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/OpenVDB/config.py -------------------------------------------------------------------------------- /PCG/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/PCG/config.py -------------------------------------------------------------------------------- /PsUtil/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/PsUtil/config.py -------------------------------------------------------------------------------- /PugiXML/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/PugiXML/config.py -------------------------------------------------------------------------------- /PyBind11/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/PyBind11/config.py -------------------------------------------------------------------------------- /PyOpenGL/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/PyOpenGL/config.py -------------------------------------------------------------------------------- /PySide/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/PySide/config.py -------------------------------------------------------------------------------- /PySide/patches/removePackaging.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/PySide/patches/removePackaging.patch -------------------------------------------------------------------------------- /PyString/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/PyString/config.py -------------------------------------------------------------------------------- /Python/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Python/config.py -------------------------------------------------------------------------------- /Qt.py/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Qt.py/config.py -------------------------------------------------------------------------------- /Qt/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Qt/config.py -------------------------------------------------------------------------------- /Qt/patches/QTabBar-draw-text-within-moving-tab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Qt/patches/QTabBar-draw-text-within-moving-tab.patch -------------------------------------------------------------------------------- /Qt/patches/QTabBarPrivate-setupMovableTab-fix-initialization-of.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Qt/patches/QTabBarPrivate-setupMovableTab-fix-initialization-of.patch -------------------------------------------------------------------------------- /Qt/patches/cmakeBuildPaths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Qt/patches/cmakeBuildPaths.patch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/README.md -------------------------------------------------------------------------------- /TBB/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/TBB/config.py -------------------------------------------------------------------------------- /TBB/patches/arm64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/TBB/patches/arm64.patch -------------------------------------------------------------------------------- /USD/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/USD/config.py -------------------------------------------------------------------------------- /YAML-CPP/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/YAML-CPP/config.py -------------------------------------------------------------------------------- /ZLib/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/ZLib/config.py -------------------------------------------------------------------------------- /Zstandard/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GafferHQ/dependencies/HEAD/Zstandard/config.py --------------------------------------------------------------------------------