-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconanfile.py
More file actions
71 lines (59 loc) · 2.28 KB
/
conanfile.py
File metadata and controls
71 lines (59 loc) · 2.28 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
from conan import ConanFile
from conan.tools.cmake import CMakeToolchain, CMake, cmake_layout, CMakeDeps
import os
class rslXmlRecipe(ConanFile):
name = "rsl-xml"
version = "0.1"
package_type = "library"
# Optional metadata
license = "<Put the package license here>"
author = "<Put your name here> <And your email here>"
url = "<Package recipe repository url here, for issues about the package>"
description = "<Description of mypkg package here>"
topics = ("<Put some tag here>", "<here>", "<and here>")
# Binary configuration
settings = "os", "compiler", "build_type", "arch"
options = {
"shared": [True, False],
"fPIC": [True, False],
"examples": [True, False],
"tests" : [True, False]
}
default_options = {"shared": False, "fPIC": True, "examples": False, "tests": False}
# Sources are located in the same place as this recipe, copy them to the recipe
exports_sources = "CMakeLists.txt", "src/*", "include/*", "test/*"
def config_options(self):
if self.settings.os == "Windows":
self.options.rm_safe("fPIC")
def configure(self):
if self.options.shared:
self.options.rm_safe("fPIC")
def requirements(self):
self.requires("rsl-util/0.1", transitive_headers=True)
self.test_requires("gtest/1.14.0")
def layout(self):
cmake_layout(self)
def generate(self):
deps = CMakeDeps(self)
deps.generate()
tc = CMakeToolchain(self)
tc.generate()
def build(self):
cmake = CMake(self)
cmake.configure(
variables={
"BUILD_TESTING": self.options.tests,
"BUILD_EXAMPLES": self.options.examples,
})
cmake.build()
cmake.install()
def package(self):
cmake = CMake(self)
cmake.install()
def package_info(self):
self.cpp_info.set_property("cmake_file_name", "rsl-xml")
self.cpp_info.components["xml"].set_property("cmake_target_name", "rsl::xml")
self.cpp_info.components["xml"].includedirs = ["include"]
self.cpp_info.components["xml"].libdirs = ["lib"]
self.cpp_info.components["xml"].libs = ["rsl-xml"]
self.cpp_info.components["xml"].requires = ["rsl-util::util"]