-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathconanfile.py
More file actions
57 lines (43 loc) · 1.64 KB
/
conanfile.py
File metadata and controls
57 lines (43 loc) · 1.64 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
from conan import ConanFile
from conan.tools.build import check_min_cppstd
from conan.tools.cmake import CMakeToolchain, CMake, cmake_layout, CMakeDeps
class opentrackiocppRecipe(ConanFile):
name = "opentrackio-cpp"
version = "1.0.1"
package_type = "library"
license = "MIT"
author = "Mo-Sys Engineering Ltd"
url = "<Package recipe repository url here, for issues about the package>"
description = "A Cpp helper library for usage with the OpenTrackIO protocol."
topics = ("OpenTrackIO")
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/*", "external/*", "cmake/*"
def config_options(self):
if self.settings.os == "Windows":
self.options.rm_safe("fPIC")
self.settings.compiler.cppstd = 20
def configure(self):
if self.options.shared:
self.options.rm_safe("fPIC")
def validate(self):
check_min_cppstd(self, 20)
def requirements(self):
self.requires("nlohmann_json/3.11.3", transitive_headers=True)
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()
cmake.build()
def package(self):
cmake = CMake(self)
cmake.install()
def package_info(self):
self.cpp_info.libs = ['opentrackio-cpp']