forked from Benny44/QPALM_vLADEL
-
Notifications
You must be signed in to change notification settings - Fork 4
/
conanfile.py
101 lines (86 loc) · 3.18 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import os
from conan import ConanFile
from conan.errors import ConanInvalidConfiguration
from conan.tools.cmake import CMakeToolchain, CMake, cmake_layout
from conan.tools.build import can_run
class QPALMRecipe(ConanFile):
name = "qpalm"
version = "1.2.5"
package_type = "library"
# Optional metadata
license = "LGPLv3"
author = "Pieter P <[email protected]>"
url = "https://github.com/kul-optec/QPALM"
description = "Proximal Augmented Lagrangian method for Quadratic Programs"
topics = ("optimization", "quadratic-program", "qp", "alm")
# Binary configuration
settings = "os", "compiler", "build_type", "arch"
bool_qpalm_options = {
"with_cxx": True,
"with_python": False,
"with_julia": False,
"with_fortran": False,
}
options = {
"shared": [True, False],
"fPIC": [True, False],
} | {k: [True, False] for k in bool_qpalm_options}
default_options = {
"shared": False,
"fPIC": True,
} | bool_qpalm_options
# Sources are located in the same place as this recipe, copy them to the recipe
exports_sources = (
"CMakeLists.txt",
"QPALM/*",
"LADEL/*",
"examples/*",
"test/*",
"LICENSE",
"README.md",
)
generators = ("CMakeDeps",)
def requirements(self):
self.requires("ladel/0.0.1", transitive_headers=True)
self.test_requires("gtest/1.11.0")
if self.options.with_cxx:
self.requires("eigen/3.4.0", transitive_headers=True)
if self.options.with_python:
self.requires("pybind11/2.13.6")
def config_options(self):
if self.settings.get_safe("os") == "Windows":
self.options.rm_safe("fPIC")
def validate(self):
if self.options.with_python and not self.options.with_cxx:
msg = "Python interface requires C++. Set 'with_cxx=True'."
raise ConanInvalidConfiguration(msg)
def layout(self):
cmake_layout(self)
def generate(self):
tc = CMakeToolchain(self)
tc.variables["QPALM_WITH_EXAMPLES"] = False
for k in self.bool_qpalm_options:
value = getattr(self.options, k, None)
if value is not None and value.value is not None:
tc.variables["QPALM_" + k.upper()] = bool(value)
if self.options.with_python:
tc.variables["USE_GLOBAL_PYBIND11"] = True
if can_run(self):
tc.variables["QPALM_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", "QPALM")
self.cpp_info.builddirs.append(os.path.join("lib", "cmake", "QPALM"))
if self.options.with_cxx:
self.cpp_info.builddirs.append(os.path.join("lib", "cmake", "QPALM_cxx"))
if self.options.with_fortran:
self.cpp_info.builddirs.append(os.path.join("lib", "cmake", "QPALM_fortran"))