-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathconanfile.py
94 lines (77 loc) · 3.71 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
from conan import ConanFile
from conan.errors import ConanInvalidConfiguration
from conan.tools.build import check_min_cppstd
from conan.tools.cmake import CMake, CMakeDeps, CMakeToolchain, cmake_layout
from conan.tools.files import copy, get, rmdir
from conan.tools.microsoft import is_msvc
from conan.tools.scm import Version
import os
required_conan_version = ">=2.1"
class OatppOpenSSLConan(ConanFile):
name = "oatpp-openssl"
license = "Apache-2.0"
homepage = "https://github.com/oatpp/oatpp-openssl"
url = "https://github.com/conan-io/conan-center-index"
description = "Oat++ OpenSSL library"
topics = ("oat++", "oatpp", "openssl")
package_type = "library"
settings = "os", "arch", "compiler", "build_type"
options = {
"shared": [True, False],
"fPIC": [True, False],
}
default_options = {
"shared": False,
"fPIC": True,
}
implements = ["auto_shared_fpic"]
def layout(self):
cmake_layout(self, src_folder="src")
def requirements(self):
# Used in oatpp-openssl/oatpp-openssl/Config.hpp public header
self.requires(f"oatpp/{self.version}", transitive_headers=True)
# Used SSL* and SSL_CTX* used in public headers
self.requires("openssl/[>=1.1 <4]", transitive_headers=True)
def validate(self):
check_min_cppstd(self, 11)
if is_msvc(self) and self.info.options.shared:
raise ConanInvalidConfiguration(f"{self.ref} can not be built as shared library with msvc")
if self.info.settings.compiler == "gcc" and Version(self.info.settings.compiler.version) < "5":
raise ConanInvalidConfiguration(f"{self.ref} requires GCC >=5")
def source(self):
get(self, **self.conan_data["sources"][self.version], strip_root=True)
def generate(self):
tc = CMakeToolchain(self)
tc.cache_variables["OATPP_BUILD_TESTS"] = False
tc.cache_variables["OATPP_MODULES_LOCATION"] = "INSTALLED"
# Honor BUILD_SHARED_LIBS from conan_toolchain (see https://github.com/conan-io/conan/issues/11840)
tc.cache_variables["CMAKE_POLICY_DEFAULT_CMP0077"] = "NEW"
tc.generate()
deps = CMakeDeps(self)
deps.generate()
def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
def package(self):
copy(self, "LICENSE", self.source_folder, os.path.join(self.package_folder, "licenses"))
cmake = CMake(self)
cmake.install()
rmdir(self, os.path.join(self.package_folder, "lib", "cmake"))
def package_info(self):
self.cpp_info.set_property("cmake_file_name", "oatpp-openssl")
self.cpp_info.set_property("cmake_target_name", "oatpp::oatpp-openssl")
# TODO: back to global scope in conan v2 once legacy generators removed
self.cpp_info.components["_oatpp-openssl"].includedirs = [
os.path.join("include", f"oatpp-{self.version}", "oatpp-openssl")
]
self.cpp_info.components["_oatpp-openssl"].libdirs = [os.path.join("lib", f"oatpp-{self.version}")]
if self.settings.os == "Windows" and self.options.shared:
self.cpp_info.components["_oatpp-openssl"].bindirs = [os.path.join("bin", f"oatpp-{self.version}")]
else:
self.cpp_info.components["_oatpp-openssl"].bindirs = []
self.cpp_info.components["_oatpp-openssl"].libs = ["oatpp-openssl"]
if self.settings.os in ["Linux", "FreeBSD"]:
self.cpp_info.components["_oatpp-openssl"].system_libs = ["pthread"]
self.cpp_info.components["_oatpp-openssl"].set_property("cmake_target_name", "oatpp::oatpp-openssl")
self.cpp_info.components["_oatpp-openssl"].requires = ["oatpp::oatpp", "openssl::openssl"]