-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconanfile.py
78 lines (60 loc) · 2.34 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
from conan import ConanFile
from conan.tools.cmake import CMakeToolchain, CMake, cmake_layout, CMakeDeps
from conan.tools.files import get
from conan.tools.scm import Git
from conan.tools.files import copy
class TauCOMRecipe(ConanFile):
name = "tauutils"
package_type = "library"
# Optional metadata
license = "MIT"
author = "Hyfloac [email protected]"
url = "https://github.com/hyfloac/TauUtils"
description = ""
# Binary configuration
settings = "os", "compiler", "build_type", "arch"
options = { "shared": [True, False] }
default_options = { "shared": True }
# Sources are located in the same place as this recipe, copy them to the recipe
exports_sources = "CMakeLists.txt", "TauUtilsDynamic/*", "TauUtilsTest/*"
def set_version(self):
self.version = self.conan_data["latest"];
# def source(self):
# data = self.conan_data["sources"][self.version];
# repo = self.conan_data["sources"]["repos"][data["url"]]
# if("latest" in data):
# copy(self, "CMakeLists.txt", self.recipe_folder, self.export_sources_folder)
# self.exports_sources = "CMakeLists.txt", "TauUtilsDynamic/*"
# else:
# git = Git(self)
# git.clone(url=repo, target=".")
# git.checkout(data["target"])
def config_options(self):
if self.settings.os == "Windows":
self.options.rm_safe("fPIC")
def configure(self):
if not self.options.shared:
self.options.rm_safe("fPIC")
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)
definitions = {};
definitions["NO_GEN_TEST"] = "ON";
cmake.configure(variables=definitions)
cmake.build()
def package(self):
cmake = CMake(self)
cmake.install()
def package_info(self):
if self.options.shared:
self.cpp_info.libs = ["TauUtilsDynamicShared"]
self.cpp_info.set_property("cmake_target_name", "tauutils::TauUtilsDynamicShared")
else:
self.cpp_info.libs = ["TauUtilsDynamicStatic"]
self.cpp_info.set_property("cmake_target_name", "tauutils::TauUtilsDynamicStatic")