-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconanfile.py
71 lines (60 loc) · 2.39 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
from conan import ConanFile
from conan.tools.cmake import CMakeToolchain, CMakeDeps, CMake, cmake_layout
from conan.tools.build import check_min_cppstd
from conan.tools.scm import Version
from conan.errors import ConanInvalidConfiguration
import os
required_conan_version = ">=1.52.0"
class LielabConan(ConanFile):
name = "lielab"
homepage = "https://github.com/sandialabs/Lielab"
settings = "os", "compiler", "build_type", "arch"
options = {"with_tests": [True, False],
"with_python": [True, False]}
default_options = {"with_tests": False,
"with_python": False}
no_copy_source = True
def requirements(self):
self.requires("eigen/3.4.0")
if self.options.get_safe("with_tests"):
self.requires("catch2/3.4.0")
if self.options.get_safe("with_python"):
self.requires("pybind11/2.12.0")
@property
def _min_cppstd(self):
return 20
@property
def _compilers_minimum_version(self):
return {
"gcc": "11",
"clang": "12",
"apple-clang": "13.1",
"Visual Studio": "17",
"msvc": "193",
}
def validate(self):
if self.settings.compiler.cppstd:
check_min_cppstd(self, self._min_cppstd)
minimum_version = self._compilers_minimum_version.get(str(self.settings.compiler), False)
if minimum_version and Version(self.settings.compiler.version) < minimum_version:
raise ConanInvalidConfiguration(f"{self.ref} requires C++{self._min_cppstd}, which your compiler does not support.")
def build_requirements(self):
self.tool_requires("cmake/[>=3.23 <4]")
def layout(self):
cmake_layout(self)
def generate(self):
tc = CMakeToolchain(self)
tc.variables["LIELAB_INSTALL_LIBRARY"] = True
if "with_tests" in self.options:
tc.variables["LIELAB_BUILD_TESTS"] = self.options.with_tests
if "with_python" in self.options:
tc.variables["LIELAB_BUILD_PYTHON"] = self.options.with_python
# tc.variables["PYTHON_EXECUTABLE"] = "path to python executable" # Define this to explicitly tell pybind11 which Python to use
tc.generate()
cmake = CMakeDeps(self)
cmake.generate()
def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
cmake.install()