forked from chemfiles/chemfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconanfile.py
41 lines (31 loc) · 1.2 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
import os
from conan import ConanFile
from conan.tools.cmake import CMake, cmake_layout
from conan.tools.scm import Git
class ChemfilesRecipe(ConanFile):
name = "chemfiles"
version = "0.10.4.2"
package_type = "library"
settings = "os", "compiler", "build_type", "arch"
options = {"shared": [True, False], "fPIC": [True, False]}
default_options = {"shared": False, "fPIC": True}
generators = "CMakeDeps", "CMakeToolchain"
exports_sources = "CMakeLists.txt", "src/*", "include/*", "cmake/*", "external/*", "VERSION"
def config_options(self):
if self.settings.os == "Windows":
del self.options.fPIC
def layout(self):
cmake_layout(self)
# Add generated include dir for editable mode.
self.cpp.source.includedirs = ["include", os.path.join(self.folders.build, "include")]
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 = ["chemfiles"]
if self.settings.os == "Windows":
self.cpp_info.system_libs.append('ws2_32')