-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconanfile.py
36 lines (29 loc) · 986 Bytes
/
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
from conans import ConanFile
from conan.tools.cmake import CMakeToolchain, CMake, cmake_layout
class GclConan(ConanFile):
name = "gcl"
version = "1.1.0"
license = "MIT"
url = "https://github.com/bloomen/gcl"
description = "Conan package for bloomen/gcl."
settings = "os", "compiler", "build_type", "arch"
options = {"shared": [True, False], "fPIC": [True, False]}
default_options = {"shared": False, "fPIC": True}
exports_sources = "CMakeLists.txt", "include/*", "src/*"
def config_options(self):
if self.settings.os == "Windows":
del self.options.fPIC
def layout(self):
cmake_layout(self)
def generate(self):
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 = ["gcl"]