This repository was archived by the owner on May 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconanfile.py
More file actions
127 lines (107 loc) · 4.01 KB
/
conanfile.py
File metadata and controls
127 lines (107 loc) · 4.01 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
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
#!/usr/bin/python
#
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from conan import ConanFile
from conan.tools.cmake import CMake, cmake_layout
from conan.tools.files import copy
from conan.tools.build import check_min_cppstd
import os
required_conan_version = ">=2.0.6"
class libhal___platform___conan(ConanFile):
name = "libhal-__platform__"
version = "0.0.1"
license = "Apache-2.0"
url = "https://github.com/conan-io/conan-center-index"
homepage = "https://libhal.github.io/libhal-__platform__"
description = ("A collection of drivers and libraries for the __platform__ "
"series microcontrollers.")
topics = ("microcontroller", "__platform__",)
settings = "compiler", "build_type", "os", "arch"
exports_sources = ("include/*", "linker_scripts/*", "tests/*", "LICENSE",
"CMakeLists.txt", "src/*")
generators = "CMakeToolchain", "CMakeDeps", "VirtualBuildEnv"
options = {
"platform": [
"profile1",
"profile2",
"ANY"
],
}
default_options = {
"platform": "ANY",
}
@property
def _use_linker_script(self):
return (self.options.platform == "profile1" or
self.options.platform == "profile2")
@property
def _min_cppstd(self):
return "20"
@property
def _compilers_minimum_version(self):
return {
"gcc": "11",
"clang": "14",
"apple-clang": "14.0.0"
}
@property
def _bare_metal(self):
return self.settings.os == "baremetal"
def validate(self):
if self.settings.get_safe("compiler.cppstd"):
check_min_cppstd(self, self._min_cppstd)
def build_requirements(self):
self.tool_requires("cmake/3.27.1")
self.tool_requires("libhal-cmake-util/3.0.1")
self.test_requires("libhal-mock/[^2.0.1]")
self.test_requires("boost-ext-ut/1.1.9")
def requirements(self):
self.requires("libhal/[^2.0.3]", transitive_headers=True)
self.requires("libhal-util/[^3.0.1]")
# Replace with appropriate processor library
self.requires("libhal-armcortex/[^2.2.1]")
def layout(self):
cmake_layout(self)
def build(self):
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)
copy(self,
"*.h",
dst=os.path.join(self.package_folder, "include"),
src=os.path.join(self.source_folder, "include"))
copy(self,
"*.hpp",
dst=os.path.join(self.package_folder, "include"),
src=os.path.join(self.source_folder, "include"))
copy(self,
"*.ld",
dst=os.path.join(self.package_folder, "linker_scripts"),
src=os.path.join(self.source_folder, "linker_scripts"))
cmake = CMake(self)
cmake.install()
def package_info(self):
self.cpp_info.set_property("cmake_target_name", "libhal::__platform__")
self.cpp_info.libs = ["libhal-__platform__"]
if self._bare_metal and self._use_linker_script:
linker_path = os.path.join(self.package_folder, "linker_scripts")
link_script = "-Tlibhal-__platform__/" + \
str(self.options.platform) + ".ld"
self.cpp_info.exelinkflags = ["-L" + linker_path, link_script]