forked from GrossfieldLab/loos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
loos_build_config.py
48 lines (40 loc) · 1.62 KB
/
loos_build_config.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
#!/usr/bin/env python
# This file is part of LOOS.
#
# LOOS (Lightweight Object-Oriented Structure library)
# Copyright (c) 2013, Tod D. Romo
# Department of Biochemistry and Biophysics
# School of Medicine & Dentistry, University of Rochester
#
# This package (LOOS) is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation under version 3 of the License.
#
# This package is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
loos_version = '3.1'
min_boost_version = '1_36'
required_boost_libraries = ('regex', 'system', 'program_options', 'thread', 'filesystem')
min_swig_version = '2.0'
host_type = 'unknown'
linux_type = 'unknown'
suffix = 'so'
versions = {}
# List of packages to build and install
# The keywords become build targets for SCons
package_list = { 'ENM': 'ElasticNetworks',
'HBonds' : 'HydrogenBonds',
'Conv' : 'Convergence',
'Clustering' : 'Clustering',
'Density' : 'DensityTools',
'OMG' : 'OptimalMembraneGenerator',
'Voronoi' : 'Voronoi',
'User': 'User',
'Python': 'PyLOOS' }
user_libdirs = {}
user_boost_flag = 0 # 1 = user has overridden boost location