-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
conanfile.py
301 lines (273 loc) · 13.2 KB
/
conanfile.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
import os
import re
from conan import ConanFile
from conan.errors import ConanInvalidConfiguration
from conan.tools.build import check_min_cppstd
from conan.tools.cmake import CMake, CMakeDeps, CMakeToolchain, cmake_layout
from conan.tools.env import VirtualBuildEnv
from conan.tools.files import copy, get, rm, replace_in_file
from conan.tools.microsoft import is_msvc
from conan.tools.scm import Version
required_conan_version = ">=1.53.0"
class OpenVDBConan(ConanFile):
name = "openvdb"
description = (
"OpenVDB is an open source C++ library comprising a novel hierarchical data"
"structure and a large suite of tools for the efficient storage and "
"manipulation of sparse volumetric data discretized on three-dimensional grids."
)
license = "MPL-2.0"
url = "https://github.com/conan-io/conan-center-index"
homepage = "https://github.com/AcademySoftwareFoundation/openvdb"
topics = ("voxel", "voxelizer", "volume-rendering", "fx", "vdb")
package_type = "library"
settings = "os", "arch", "compiler", "build_type"
options = {
"shared": [True, False],
"fPIC": [True, False],
"build_ax": [True, False],
"simd": [None, "SSE42", "AVX"],
"use_colored_output": [True, False],
"use_delayed_loading": [True, False],
"use_explicit_instantiation": [True, False],
"use_imath_half": [True, False],
"with_blosc": [True, False],
# Deprecated because EXR is only used when building executables, which the recipe does not support
"with_exr": ["deprecated", True, False],
"with_log4cplus": [True, False],
"with_zlib": [True, False],
}
default_options = {
"shared": False,
"fPIC": True,
"build_ax": False,
"simd": None,
"use_colored_output": False,
"use_delayed_loading": False,
"use_explicit_instantiation": False,
"use_imath_half": True,
"with_blosc": True,
"with_exr": "deprecated",
"with_log4cplus": False, # Disabled by default because it is not compatible with C++17
"with_zlib": True,
}
options_description = {
"build_ax": "Build the OpenVDB AX library.",
"simd": (
"Choose whether to enable SIMD compiler flags or not. "
"Although not required, it is strongly recommended to enable SIMD. AVX implies SSE42."
),
"use_colored_output": "Always produce ANSI-colored output (GNU/Clang only).",
"use_delayed_loading": "Build the core OpenVDB library with delayed-loading.",
"use_explicit_instantiation": (
"Use explicit instantiation for all supported classes and methods against a pre-defined "
"list of OpenVDB trees. This makes the core library larger and slower to compile, but speeds up "
"the compilation of all dependent code by bypassing the expensive template instantiation. "
"Disabled by default in ConanCenter to avoid excessive memory usage during compilation."
),
"use_imath_half": (
"Use the definition of half-precision floating point types from the Imath library. "
"If False, the embedded definition provided by OpenVDB is used. "
"You may set this to on to force Imath half to be used if you know it to be required."
),
"with_blosc": "Use Blosc for improved disk compression. Recommended.",
"with_log4cplus": "Use log4cplus for improved OpenVDB Logging.",
"with_zlib": "Use ZLib for disk serialization compression. ZLib can only be disabled if Blosc is also disabled.",
}
@property
def _min_cppstd(self):
return 17 if Version(self.version) >= "10.0.0" else 14
@property
def _compilers_min_version(self):
if Version(self.version) >= "10.0.0":
# https://github.com/AcademySoftwareFoundation/openvdb/blob/v10.0.1/doc/dependencies.txt#L56-L84
return {
"msvc": "192.8",
"Visual Studio": "16",
"gcc": "9.3.1",
"clang": "5.0",
"apple-clang": "12.0",
"intel-cc": "19",
}
else:
# https://github.com/AcademySoftwareFoundation/openvdb/blob/v9.1.0/doc/dependencies.txt#L56-L84
return {
"msvc": "191.0",
"Visual Studio": "15",
"gcc": "6.3.1",
"clang": "3.8",
"apple-clang": "10.0",
"intel-cc": "17",
}
def config_options(self):
if self.settings.os == "Windows":
del self.options.fPIC
if is_msvc(self):
# Supported by GCC and Clang only
del self.options.use_colored_output
if Version(self.version) < "10.0.0":
del self.options.use_explicit_instantiation
del self.options.use_delayed_loading
def configure(self):
if self.options.shared:
self.options.rm_safe("fPIC")
def layout(self):
cmake_layout(self, src_folder="src")
def package_id(self):
# with_exr is deprecated and has no effect
del self.info.options.with_exr
def requirements(self):
# https://github.com/AcademySoftwareFoundation/openvdb/blob/v10.0.1/doc/dependencies.txt#L36-L84
self.requires("boost/1.84.0", transitive_headers=True)
self.requires("onetbb/2021.10.0", transitive_headers=True, transitive_libs=True)
if self.options.use_imath_half:
self.requires("imath/3.1.9", transitive_headers=True, transitive_libs=True)
if self.options.with_zlib:
self.requires("zlib/[>=1.2.11 <2]")
if self.options.with_blosc:
self.requires("c-blosc/1.21.5")
if self.options.with_log4cplus:
# log4cplus 2.x is not supported
self.requires("log4cplus/1.2.2", transitive_headers=True)
def _check_compiler_version(self):
compiler = str(self.settings.compiler)
minimum_version = self._compilers_min_version.get(compiler, False)
if minimum_version and Version(self.settings.compiler.version) < minimum_version:
raise ConanInvalidConfiguration(
f"{self.name} requires a {compiler} version greater than {minimum_version}"
)
def validate(self):
if self.settings.compiler.get_safe("cppstd"):
check_min_cppstd(self, self._min_cppstd)
if self.settings.arch not in ("x86", "x86_64"):
if self.options.simd:
raise ConanInvalidConfiguration("Only intel architectures support SSE4 or AVX.")
self._check_compiler_version()
if self.options.with_exr != "deprecated":
self.output.warning("with_exr option is deprecated, do not use anymore.")
@property
def _settings_build(self):
return getattr(self, "settings_build", self.settings)
def build_requirements(self):
if Version(self.version) >= "10.0.0":
self.tool_requires("cmake/[>=3.18 <4]")
if self.options.build_ax:
if self._settings_build.os == "Windows":
self.tool_requires("winflexbison/2.5.25")
else:
self.tool_requires("bison/3.8.2")
self.tool_requires("flex/2.6.4")
def source(self):
get(self, **self.conan_data["sources"][self.version], strip_root=True)
def generate(self):
env = VirtualBuildEnv(self)
env.generate()
tc = CMakeToolchain(self)
tc.variables["Boost_USE_STATIC_LIBS"] = not self.dependencies["boost"].options.shared
tc.variables["OPENVDB_BUILD_AX"] = self.options.build_ax
tc.variables["OPENVDB_BUILD_BINARIES"] = False
tc.variables["OPENVDB_BUILD_CORE"] = True
tc.variables["OPENVDB_BUILD_DOCS"] = False
tc.variables["OPENVDB_BUILD_HOUDINI_ABITESTS"] = False
tc.variables["OPENVDB_BUILD_HOUDINI_PLUGIN"] = False
tc.variables["OPENVDB_BUILD_MAYA_PLUGIN"] = False
tc.variables["OPENVDB_BUILD_NANOVDB"] = False # nanovdb should be packaged separately in CCI
tc.variables["OPENVDB_BUILD_PYTHON_MODULE"] = False
tc.variables["OPENVDB_CORE_SHARED"] = self.options.shared
tc.variables["OPENVDB_CORE_STATIC"] = not self.options.shared
tc.variables["OPENVDB_CXX_STRICT"] = False
tc.variables["OPENVDB_DISABLE_BOOST_IMPLICIT_LINKING"] = True
tc.variables["OPENVDB_ENABLE_RPATH"] = True
tc.variables["OPENVDB_ENABLE_UNINSTALL"] = False
tc.variables["OPENVDB_FUTURE_DEPRECATION"] = True
tc.variables["OPENVDB_INSTALL_CMAKE_MODULES"] = False
tc.variables["OPENVDB_SIMD"] = self.options.simd
tc.variables["OPENVDB_USE_DELAYED_LOADING"] = self.options.get_safe("use_delayed_loading", False)
tc.variables["USE_AX"] = False # used only by Python bindings and the Houdini plugin
tc.variables["USE_BLOSC"] = self.options.with_blosc
tc.variables["USE_COLORED_OUTPUT"] = self.options.get_safe("use_colored_output", False)
tc.variables["USE_EXPLICIT_INSTANTIATION"] = self.options.get_safe("use_explicit_instantiation", False)
tc.variables["USE_EXR"] = False
tc.variables["USE_HOUDINI"] = False
tc.variables["USE_IMATH_HALF"] = self.options.get_safe("use_imath_half", False)
tc.variables["USE_LOG4CPLUS"] = self.options.with_log4cplus
tc.variables["USE_MAYA"] = False
tc.variables["USE_NANOVDB"] = False
tc.variables["USE_PKGCONFIG"] = False
tc.variables["USE_PNG"] = False
tc.variables["USE_STATIC_DEPENDENCIES"] = False
tc.variables["USE_TBB"] = True # Only affects the nanovdb component
tc.variables["USE_ZLIB"] = self.options.with_zlib
tc.generate()
tc = CMakeDeps(self)
tc.set_property("c-blosc", "cmake_file_name", "Blosc")
tc.set_property("c-blosc", "cmake_target_name", "Blosc::blosc")
tc.set_property("openexr", "cmake_file_name", "IlmBase")
tc.set_property("openexr::ilmbase_half", "cmake_target_name", "IlmBase::Half")
tc.set_property("log4cplus", "cmake_target_name", "Log4cplus::log4cplus")
tc.generate()
def _patch_sources(self):
# Remove FindXXX files from OpenVDB. Let Conan do the job
rm(self, "Find*.cmake", os.path.join(self.source_folder, "cmake"), recursive=True)
# Relax version checks in find_package(),
# since the config/module files produced by CMakeDeps do not support gt major version checks
cmakelists = self.source_path.joinpath("openvdb", "openvdb", "CMakeLists.txt")
cmakelists.write_text(re.sub(r"\$\{MINIMUM_\S+_VERSION}", "", cmakelists.read_text()))
replace_in_file(self, os.path.join(self.source_folder, "openvdb", "openvdb", "CMakeLists.txt"),
"OPENVDB_FUTURE_DEPRECATION", "FALSE")
def build(self):
self._patch_sources()
cmake = CMake(self)
cmake.configure()
cmake.build()
def package(self):
copy(self, "LICENSE",
dst=os.path.join(self.package_folder, "licenses"),
src=self.source_folder)
cmake = CMake(self)
cmake.install()
@property
def _public_defines(self):
defines = []
if self.options.shared:
defines.append("OPENVDB_DLL")
else:
defines.append("OPENVDB_STATICLIB")
if self.settings.os == "Windows":
defines.append("_WIN32")
defines.append("NOMINMAX")
if self.options.with_log4cplus:
defines.append("OPENVDB_USE_LOG4CPLUS")
return defines
def package_info(self):
self.cpp_info.set_property("cmake_find_mode", "both")
self.cpp_info.set_property("cmake_file_name", "OpenVDB")
self.cpp_info.set_property("cmake_target_name", "OpenVDB::openvdb")
# TODO: back to global scope in conan v2 once cmake_find_package_* generators removed
main_component = self.cpp_info.components["openvdb-core"]
lib_prefix = "lib" if is_msvc(self) and not self.options.shared else ""
main_component.libs = [lib_prefix + "openvdb"]
main_component.defines = self._public_defines
if self.settings.os in ("Linux", "FreeBSD"):
main_component.system_libs = ["pthread"]
main_component.requires = [
"boost::iostreams",
"boost::system",
"onetbb::onetbb",
]
if self.settings.os == "Windows":
main_component.requires.append("boost::disable_autolinking")
if self.options.with_zlib:
main_component.requires.append("zlib::zlib")
if self.options.with_blosc:
main_component.requires.append("c-blosc::c-blosc")
if self.options.with_log4cplus:
main_component.requires.append("log4cplus::log4cplus")
if self.options.use_imath_half:
main_component.requires.append("imath::imath")
# TODO: to remove in conan v2 once cmake_find_package_* generators removed
self.cpp_info.names["cmake_find_package"] = "OpenVDB"
self.cpp_info.names["cmake_find_package_multi"] = "OpenVDB"
main_component.names["cmake_find_package"] = "openvdb"
main_component.names["cmake_find_package_multi"] = "openvdb"
main_component.set_property("cmake_target_name", "OpenVDB::openvdb")