13
13
# (in alphabetic order)
14
14
BLENDER_VERSION = "4.2.3"
15
15
BOOST_VERSION = "1.84.0"
16
+ DOXYGEN_VERSION = "1.13.2"
16
17
EIGEN_VERSION = "3.4.0"
17
18
EMBREE3_VERSION = "3.13.5"
18
19
FMT_VERSION = "11.0.2"
22
23
IMGUIFILEDIALOG_VERSION = "0.6.7"
23
24
JSON_VERSION = "3.11.3"
24
25
LIBDEFLATE_VERSION = "1.22"
26
+ LIBICONV_VERSION = "1.17"
25
27
LLVM_OPENMP_VERSION = "17.0.6"
26
28
MINIZIP_VERSION = "4.0.3"
27
29
NINJA_VERSION = "1.12.1"
28
30
NVRTC_VERSION = "12.8.61"
29
31
OCIO_VERSION = "2.4.2"
32
+ OIIO_VERSION = "2.5.18.0"
30
33
OIDN_VERSION = "2.3.1"
31
- OIIO_VERSION = "2.5.16.0"
32
34
OPENEXR_VERSION = "3.3.3"
33
- OIIO_VERSION = "2.5.18.0"
34
35
OPENSUBDIV_VERSION = "3.6.0"
35
36
OPENVDB_VERSION = "11.0.0"
36
37
PYBIND11_VERSION = "2.13.6"
37
38
ROBINHOOD_VERSION = "3.11.5"
38
39
SPDLOG_VERSION = "1.15.0"
39
40
TBB_VERSION = "2021.12.0"
41
+ XAPIAN_CORE_VERSION = "1.4.19"
40
42
ZSTD_VERSION = "1.5.7"
41
43
42
44
@@ -119,7 +121,7 @@ def requirements(self):
119
121
120
122
# LuxCore build requirements
121
123
# 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)
123
125
124
126
# Bison/flex (Luxcore build requirement)
125
127
if self .settings .os == "Windows" :
@@ -129,12 +131,12 @@ def requirements(self):
129
131
self .requires ("flex/[*]" , build = False , run = True , visible = True )
130
132
131
133
# 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 )
133
135
134
136
# 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 )
138
140
139
141
def build_requirements (self ):
140
142
# LuxCoreDeps build requirements
0 commit comments