-
Notifications
You must be signed in to change notification settings - Fork 66
/
conanfile.py
50 lines (43 loc) · 1.66 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
from conans import ConanFile, CMake, tools
import os
class OpenSeesDependencies(ConanFile):
name = "OpenSeesDependencies"
version = "1.0.0"
description = "Provides Software Packages needed to build OpenSees"
license = "BSD 3-Clause"
author = "fmk [email protected]"
settings = {"os": None, "build_type": None, "compiler": None, "arch": ["x86_64"]}
options = {"shared": [True, False]}
default_options = {"mkl-static:threaded": False, "ipp-static:simcenter_backend": True}
generators = "cmake", "cmake_find_package"
build_policy = "missing"
requires = "hdf5/1.14.0", \
"tcl/8.6.11", \
"eigen/3.4.0"
# Custom attributes for Bincrafters recipe conventions
_source_subfolder = "source_subfolder"
_build_subfolder = "build_subfolder"
# Set short paths for Windows
short_paths = True
scm = {
"type": "git", # Use "type": "svn", if local repo is managed using SVN
"subfolder": _source_subfolder,
"url": "auto",
"revision": "auto"
}
def configure(self):
self.options.shared = False
def configure_cmake(self):
cmake = CMake(self)
cmake.configure(source_folder=self._source_subfolder)
return cmake
def build(self):
cmake = self.configure_cmake()
cmake.build()
def package(self):
self.copy(pattern="LICENSE", dst="licenses", src=self._source_subfolder)
cmake = self.configure_cmake()
cmake.install()
self.copy("*", dst="bin", src=self._source_subfolder + "/applications")
def package_info(self):
self.env_info.PATH.append(os.path.join(self.package_folder, "bin"))