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