-
Notifications
You must be signed in to change notification settings - Fork 0
/
conanfile.py
70 lines (57 loc) · 2.58 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
from conan import ConanFile
from conan.errors import ConanInvalidConfiguration
from conan.tools.cmake import CMakeToolchain, CMake, cmake_layout
from conan.tools.files import collect_libs, copy, get, apply_conandata_patches, export_conandata_patches, mkdir, rename
from conan.tools.microsoft import is_msvc_static_runtime, is_msvc
import os
required_conan_version = ">=1.60.0"
class SimpleCmake(ConanFile):
name = "simple-cmake"
description = "Simple cmake project"
topics = ("cmake")
url = "https://github.com/conan-io/conan-center-index"
homepage = ""
license = "MIT"
settings = "os", "arch", "compiler", "build_type"
package_type = "library"
options = {
"shared": [True, False],
"fPIC": [True, False],
}
default_options = {
"shared": False,
"fPIC": True,
}
def export_sources(self):
copy(self, "*", os.path.join(self.recipe_folder, "src"), os.path.join(self.export_sources_folder, "src"), excludes=["cmake-*", "conan", ".conan"])
def layout(self):
cmake_layout(self, src_folder="src")
def config_options(self):
if self.settings.os == "Windows":
del self.options.fPIC
def configure(self):
if self.options.shared:
self.options.rm_safe("fPIC")
def generate(self):
tc = CMakeToolchain(self)
tc.generate()
def build(self):
cmake = CMake(self)
cmake.configure()
#cmake.build(target="LibA")
#cmake.build(target="LibB")
cmake.build(target="LibC")
def package(self):
copy(self, "libLibC.a", src=os.path.join(self.build_folder, "LibC"), dst=os.path.join(self.package_folder, "lib"), keep_path=False)
copy(self, "libLibC.so", src=os.path.join(self.build_folder, "LibC"), dst=os.path.join(self.package_folder, "lib"), keep_path=False)
if is_msvc(self):
if self.options.shared:
copy(self, "LibC.dll", src=os.path.join(self.build_folder, "LibC", f"{self.settings.build_type}"), dst=os.path.join(self.package_folder, "lib"), keep_path=False)
else:
copy(self, "LibC.lib", src=os.path.join(self.build_folder, "LibC", f"{self.settings.build_type}"), dst=os.path.join(self.package_folder, "lib"), keep_path=False)
copy(self, "*.h", src=os.path.join(self.source_folder, "LibC", "include"), dst=os.path.join(self.package_folder, "include"))
def package_info(self):
if self.settings.os == "Windows" and self.options.shared:
self.cpp_info.bindirs.append("lib")
else:
self.cpp_info.libs = ["LibC"]