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 |
# locations of include files for python |
20 |
python_path = "/usr/include/python%s.%s"%(sys.version_info[0],sys.version_info[1]) |
21 |
python_lib_path = '/usr/lib' |
22 |
python_lib = "python%s.%s"%(sys.version_info[0],sys.version_info[1]) |
23 |
|
24 |
# locations of libraries for boost |
25 |
boost_path = '/usr/include' |
26 |
boost_lib_path = '/usr/lib' |
27 |
boost_lib = 'boost_python' |
28 |
|
29 |
useNetCDF = 'yes' |
30 |
netCDF_libs = ['netcdf', 'netcdf_c++'] |
31 |
|
32 |
# locations of doc building executables |
33 |
doxygen_path = '/usr/bin' |
34 |
epydoc_path = '/usr/bin' |
35 |
|
36 |
# c flags to use |
37 |
cc_flags = '-O3 -fpic -Wno-unknown-pragmas' |
38 |
cc_flags_debug = '-g -O0 -fpic -Wno-unknown-pragmas' |
39 |
|
40 |
# c++ flags to use |
41 |
cxx_flags = '-ansi' |
42 |
cxx_flags_debug = '-ansi -DDOASSERT -DDOPROF' |
43 |
|
44 |
# static library archiver flags to use |
45 |
#ar_flags = 'crus' |
46 |
|
47 |
# system specific libraries to link with |
48 |
#sys_libs = [] |