-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathconanfile.py
144 lines (114 loc) · 4.79 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
import os
from shutil import which
from conan import ConanFile
from conan.errors import ConanInvalidConfiguration
from conan.tools.build import check_min_cppstd
from conan.tools.cmake import CMakeToolchain, CMakeDeps, CMake, cmake_layout
from conan.tools.env import VirtualBuildEnv
from conan.tools.files import copy, AutoPackager, update_conandata
from conan.tools.microsoft import check_min_vs, is_msvc, is_msvc_static_runtime
from conan.tools.scm import Version, Git
required_conan_version = ">=2.7.0"
class ArcusConan(ConanFile):
name = "arcus"
license = "LGPL-3.0"
author = "Ultimaker B.V."
url = "https://github.com/Ultimaker/libArcus"
description = "Communication library between internal components for Ultimaker software"
topics = ("conan", "binding", "cura", "protobuf", "c++")
settings = "os", "compiler", "build_type", "arch"
exports = "LICENSE*"
package_type = "library"
python_requires = "sentrylibrary/1.0.0@ultimaker/stable"
python_requires_extend = "sentrylibrary.SentryLibrary"
options = {
"shared": [True, False],
"fPIC": [True, False],
}
default_options = {
"shared": True,
"fPIC": True,
}
def init(self):
base = self.python_requires["sentrylibrary"].module.SentryLibrary
self.options.update(base.options, base.default_options)
def set_version(self):
if not self.version:
self.version = self.conan_data["version"]
def export(self):
git = Git(self)
update_conandata(self, {"version": self.version, "commit": git.get_commit()})
@property
def _min_cppstd(self):
return 17
@property
def _compilers_minimum_version(self):
return {
"gcc": "9",
"clang": "9",
"apple-clang": "9",
"msvc": "192",
"visual_studio": "14",
}
def export_sources(self):
copy(self, "CMakeLists.txt", self.recipe_folder, self.export_sources_folder)
copy(self, "*", os.path.join(self.recipe_folder, "src"), os.path.join(self.export_sources_folder, "src"))
copy(self, "*", os.path.join(self.recipe_folder, "include"), os.path.join(self.export_sources_folder, "include"))
def config_options(self):
super().config_options()
if self.settings.os == "Windows":
del self.options.fPIC
def configure(self):
super().configure()
if self.options.shared:
self.options.rm_safe("fPIC")
def layout(self):
cmake_layout(self)
self.cpp.package.libs = ["Arcus"]
if self.settings.build_type == "Debug":
self.cpp.package.defines = ["ARCUS_DEBUG"]
if self.settings.os in ["Linux", "FreeBSD", "Macos"]:
self.cpp.package.system_libs = ["pthread"]
elif self.settings.os == "Windows":
self.cpp.package.system_libs = ["ws2_32"]
def requirements(self):
super().requirements()
self.requires("protobuf/3.21.12", transitive_headers=True)
def validate(self):
super().validate()
if self.settings.compiler.cppstd:
check_min_cppstd(self, self._min_cppstd)
check_min_vs(self, 192) # TODO: remove in Conan 2.0
if not is_msvc(self):
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."
)
if self.options.enable_sentry:
for sentry_setting in ["organization", "token"]:
if self.conf.get(f"user.sentry:{sentry_setting}", "", check_type=str) == "":
raise ConanInvalidConfiguration(f"Unable to enable Sentry because no {sentry_setting} was configured")
def build_requirements(self):
self.test_requires("standardprojectsettings/[>=0.2.0]@ultimaker/stable")
self.tool_requires("protobuf/3.21.12")
def generate(self):
tc = CMakeToolchain(self)
if is_msvc(self):
tc.variables["USE_MSVC_RUNTIME_LIBRARY_DLL"] = not is_msvc_static_runtime(self)
tc.cache_variables["CMAKE_POLICY_DEFAULT_CMP0077"] = "NEW"
self.setup_cmake_toolchain_sentry(tc)
tc.generate()
tc = CMakeDeps(self)
tc.generate()
tc = VirtualBuildEnv(self)
tc.generate(scope="build")
def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
self.send_sentry_debug_files(binary_basename = "libArcus")
def package(self):
copy(self, pattern="LICENSE*", dst="licenses", src=self.source_folder)
packager = AutoPackager(self)
packager.run()