forked from Benny44/LADEL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conanfile.py
72 lines (58 loc) · 1.86 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
import os
from conan import ConanFile
from conan.tools.cmake import CMakeToolchain, CMake, cmake_layout
from conan.tools.build import can_run
class LADELRecipe(ConanFile):
name = "ladel"
version = "0.0.1"
package_type = "library"
# Optional metadata
license = "LGPLv3"
author = "Pieter P <[email protected]>"
url = "https://github.com/kul-optec/LADEL"
description = "Quasidefinite LDL factorization package with (symmetric) row/column adds and deletes"
topics = ("LDL", "LDLT", "linear-algebra")
# Binary configuration
settings = "os", "compiler", "build_type", "arch"
options = {
"shared": [True, False],
"fPIC": [True, False],
}
default_options = {
"shared": False,
"fPIC": True,
}
# Sources are located in the same place as this recipe, copy them to the recipe
exports_sources = (
"CMakeLists.txt",
"LADEL/*",
"thirdparty/*",
"test/*",
"LICENSE",
"README.md",
)
generators = ("CMakeDeps",)
def requirements(self):
self.test_requires("gtest/1.15.0")
def config_options(self):
if self.settings.get_safe("os") == "Windows":
self.options.rm_safe("fPIC")
def layout(self):
cmake_layout(self)
def generate(self):
tc = CMakeToolchain(self)
if can_run(self):
tc.variables["LADEL_FORCE_TEST_DISCOVERY"] = True
tc.generate()
def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
cmake.test()
def package(self):
cmake = CMake(self)
cmake.install()
def package_info(self):
self.cpp_info.set_property("cmake_find_mode", "none")
self.cpp_info.set_property("cmake_file_name", "LADEL")
self.cpp_info.builddirs.append(os.path.join("lib", "cmake", "LADEL"))