-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathconanfile.py
More file actions
78 lines (67 loc) · 2.45 KB
/
conanfile.py
File metadata and controls
78 lines (67 loc) · 2.45 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
from conan import ConanFile
from conan.tools.cmake import CMake, CMakeToolchain, cmake_layout
from conan.tools.files import copy
import os
class PerfCppConan(ConanFile):
name = "perf-cpp"
version = "0.13.0"
license = "LGPL-3.0-only"
author = "Jan Muehlig"
url = "https://github.com/jmuehlig/perf-cpp"
homepage = "https://github.com/jmuehlig/perf-cpp"
description = (
"Lightweight C++17 library for hardware performance counter "
"monitoring and sampling using the Linux perf subsystem."
)
topics = (
"performance",
"profiling",
"perf",
"hardware-counters",
"sampling",
"pebs",
"ibs",
"linux",
)
settings = "os", "compiler", "build_type", "arch"
options = {
"shared": [True, False],
"fPIC": [True, False],
}
default_options = {
"shared": False,
"fPIC": True,
}
exports_sources = "CMakeLists.txt", "src/*", "include/*", "LICENSE", ".clang-tidy"
def validate(self):
if self.settings.os != "Linux":
raise ConanInvalidConfiguration(
"perf-cpp requires Linux (uses perf_event_open syscall)."
)
def config_options(self):
if self.options.shared:
self.options.rm_safe("fPIC")
def layout(self):
cmake_layout(self)
def generate(self):
tc = CMakeToolchain(self)
tc.variables["BUILD_LIB_SHARED"] = self.options.shared
tc.variables["BUILD_EXAMPLES"] = False
tc.variables["BUILD_TESTS"] = False
tc.generate()
def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
def package(self):
copy(self, "LICENSE", src=self.source_folder, dst=os.path.join(self.package_folder, "licenses"))
cmake = CMake(self)
cmake.install()
## CMakeLists.txt uses a custom CMAKE_INSTALL_LIBRARY_DIR (CACHE PATH), which CMake
## resolves to an absolute path in the build tree. Copy the library explicitly.
copy(self, "*.a", src=self.build_folder, dst=os.path.join(self.package_folder, "lib"), keep_path=False)
copy(self, "*.so*", src=self.build_folder, dst=os.path.join(self.package_folder, "lib"), keep_path=False)
def package_info(self):
self.cpp_info.libs = ["perf-cpp"]
self.cpp_info.set_property("cmake_file_name", "perf-cpp")
self.cpp_info.set_property("cmake_target_name", "perf-cpp::perf-cpp")