-
Notifications
You must be signed in to change notification settings - Fork 0
/
conanfile.py
37 lines (33 loc) · 1.19 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
__copyright__ = """This file is part of SCINE Kinetx.
This code is licensed under the 3-clause BSD license.
Copyright ETH Zurich, Department of Chemistry and Applied Biosciences, Reiher Group.
See LICENSE.txt for details.
"""
from dev.conan.base import ScineConan
class ScineKinetxConan(ScineConan):
name = "scine_kinetx"
version = "3.0.0"
url = "https://github.com/qcscine/kinetx"
description = """ """
options = {
"shared": [True, False],
"python": [True, False],
"tests": [True, False],
"coverage": [True, False],
"microarch": ["detect", "none"]
}
default_options = {"shared": True, "python": False,
"tests": False, "coverage": False,
"microarch": "none"}
exports = "dev/conan/*.py"
exports_sources = ["dev/cmake/*", "src/*", "CMakeLists.txt", "README.rst",
"LICENSE.txt", "dev/conan/hook.cmake",
"dev/conan/glue/*"]
requires = ["eigen/[~=3.3.7]"]
cmake_name = "Kinetx"
cmake_definitions = {
"CMAKE_UNITY_BUILD": "OFF",
"CMAKE_UNITY_BUILD_BATCH_SIZE": 16
}
def package_info(self):
super().package_info()