1313# (in alphabetic order)
1414BLENDER_VERSION = "4.2.3"
1515BOOST_VERSION = "1.84.0"
16+ DOXYGEN_VERSION = "1.13.2"
1617EIGEN_VERSION = "3.4.0"
1718EMBREE3_VERSION = "3.13.5"
1819FMT_VERSION = "11.0.2"
2223IMGUIFILEDIALOG_VERSION = "0.6.7"
2324JSON_VERSION = "3.11.3"
2425LIBDEFLATE_VERSION = "1.22"
26+ LIBICONV_VERSION = "1.17"
2527LLVM_OPENMP_VERSION = "17.0.6"
2628MINIZIP_VERSION = "4.0.3"
2729NINJA_VERSION = "1.12.1"
2830NVRTC_VERSION = "12.8.61"
2931OCIO_VERSION = "2.4.2"
32+ OIIO_VERSION = "2.5.18.0"
3033OIDN_VERSION = "2.3.1"
31- OIIO_VERSION = "2.5.16.0"
3234OPENEXR_VERSION = "3.3.3"
33- OIIO_VERSION = "2.5.18.0"
3435OPENSUBDIV_VERSION = "3.6.0"
3536OPENVDB_VERSION = "11.0.0"
3637PYBIND11_VERSION = "2.13.6"
3738ROBINHOOD_VERSION = "3.11.5"
3839SPDLOG_VERSION = "1.15.0"
3940TBB_VERSION = "2021.12.0"
41+ XAPIAN_CORE_VERSION = "1.4.19"
4042ZSTD_VERSION = "1.5.7"
4143
4244
@@ -119,7 +121,7 @@ def requirements(self):
119121
120122 # LuxCore build requirements
121123 # As they are build requirements for LuxCore, they must be full
122- # requirements for LuxCoreDeps (otherwise it won't get saved in cache)
124+ # requirements for LuxCoreDeps (otherwise they won't get saved in cache)
123125
124126 # Bison/flex (Luxcore build requirement)
125127 if self .settings .os == "Windows" :
@@ -129,12 +131,12 @@ def requirements(self):
129131 self .requires ("flex/[*]" , build = False , run = True , visible = True )
130132
131133 # Ninja (Luxcore build requirement)
132- self .requires (f "ninja/[*]" , build = False , run = True , visible = True )
134+ self .requires ("ninja/[*]" , build = False , run = True , visible = True )
133135
134136 # Doxygen (Luxcore build requirement)
135- self .requires (f"doxygen/1.13.2 " , build = False , run = True , visible = True )
136- self .requires (f"xapian-core/1.4.19 " , build = False , run = False , visible = True )
137- self .requires (f"libiconv/1.17 " , build = False , run = False , visible = True )
137+ self .requires (f"doxygen/{ DOXYGEN_VERSION } " , build = False , run = True , visible = True )
138+ self .requires (f"xapian-core/{ XAPIAN_CORE_VERSION } " , build = False , run = False , visible = True )
139+ self .requires (f"libiconv/{ LIBICONV_VERSION } " , build = False , run = False , visible = True )
138140
139141 def build_requirements (self ):
140142 # LuxCoreDeps build requirements
0 commit comments