1 |
|
2 |
######################################################## |
3 |
# |
4 |
# Copyright (c) 2003-2008 by University of Queensland |
5 |
# Earth Systems Science Computational Center (ESSCC) |
6 |
# http://www.uq.edu.au/esscc |
7 |
# |
8 |
# Primary Business: Queensland, Australia |
9 |
# Licensed under the Open Software License version 3.0 |
10 |
# http://www.opensource.org/licenses/osl-3.0.php |
11 |
# |
12 |
######################################################## |
13 |
|
14 |
import sys |
15 |
|
16 |
py_vers_string = "%s.%s"%(sys.version_info[0],sys.version_info[1]) |
17 |
|
18 |
# locations of include files for python |
19 |
python_path = "/usr/include/python" + py_vers_string |
20 |
python_lib_path = '/usr/lib' |
21 |
python_lib = "python" + py_vers_string |
22 |
|
23 |
# locations of libraries for boost |
24 |
boost_path = '/usr/include' |
25 |
boost_lib_path = '/usr/lib' |
26 |
boost_lib = 'boost_python' |
27 |
|
28 |
useNetCDF = 'yes' |
29 |
netCDF_path = '/usr/include' |
30 |
netCDF_lib_path = '/usr/lib' |
31 |
netCDF_libs = ['netcdf', 'netcdf_c++'] |
32 |
|
33 |
# locations of doc building executables |
34 |
doxygen_path = '/usr/bin' |
35 |
epydoc_path = '/usr/bin' |
36 |
|
37 |
# c flags to use |
38 |
cc_flags = '-fpic -Wno-unknown-pragmas' |
39 |
cc_optim = '-O3' |
40 |
cc_debug = '-g' |
41 |
|
42 |
# static library archiver flags to use |
43 |
#ar_flags = 'crus' |
44 |
|
45 |
# system specific libraries to link with |
46 |
#sys_libs = [] |