forked from qdrvm/scale-codec-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconanfile.py
More file actions
67 lines (50 loc) · 1.73 KB
/
Copy pathconanfile.py
File metadata and controls
67 lines (50 loc) · 1.73 KB
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
from conan import ConanFile
from conan.tools.cmake import CMakeToolchain, CMake, cmake_layout
class libscaleConan(ConanFile):
name = "libscale"
version = "1.1.1"
url = "https://github.com/svnscha/scale-codec-cpp"
description = "Designing a Better World Through Decentralized Technologies"
topics = ("crypto", "scale", "substrate", "polkadot")
# Binary configuration
settings = "os", "compiler", "build_type", "arch"
options = {
"shared": [True, False],
"fPIC": [True, False]
}
default_options = {
"shared": False,
"fPIC": True,
"boost*:header_only": True
}
generators = "CMakeDeps"
# Sources are located in the same place as this recipe, copy them to the recipe
exports_sources = "CMakeLists.txt", "src/*", "include/*"
def config_options(self):
if self.settings.os == "Windows":
del self.options.fPIC
def configure(self):
if self.options.shared:
self.options.rm_safe("fPIC")
def requirements(self):
self.requires("boost/1.84.0", transitive_headers=True)
self.requires("wide-integer/cci.20231015", transitive_headers=True)
def generate(self):
tc = CMakeToolchain(self)
if self.options.shared:
tc.variables["BUILD_SHARED_LIBS"] = "ON"
else:
tc.variables["BUILD_SHARED_LIBS"] = "OFF"
tc.variables["BUILD_TESTS"] = "OFF"
tc.generate()
def layout(self):
cmake_layout(self)
def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
def package(self):
cmake = CMake(self)
cmake.install()
def package_info(self):
self.cpp_info.libs = ["scale"]