-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconanfile.py
33 lines (27 loc) · 874 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
from conans import ConanFile, CMake, tools
class SampleLib(ConanFile):
name = "SampleLib"
version = "1.0"
license = "Public Domain"
author = ""
description = "Example project"
settings = "os", "compiler", "build_type", "arch"
options = {"shared": [True, False]}
default_options = {"shared": False}
no_copy_source = True
requires = 'nlohmann_json/3.9.1'
generators = 'cmake'
def _config_cmake(self):
cmake = CMake(self)
if self.options.shared:
cmake.definitions['LIB_SHARED'] = 'ON'
else:
cmake.definitions['LIB_SHARED'] = 'OFF'
cmake.configure(source_dir=self.source_folder)
return cmake
def build(self):
cmake = self._config_cmake()
cmake.build()
def package(self):
cmake = self._config_cmake()
cmake.install()