1 |
ksteube |
1312 |
# |
2 |
phornby |
1826 |
# $Id$ |
3 |
ksteube |
1312 |
# |
4 |
phornby |
1826 |
####################################################### |
5 |
ksteube |
1312 |
# |
6 |
phornby |
1826 |
# 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 |
phornby |
869 |
|
17 |
|
|
import sys |
18 |
|
|
|
19 |
phornby |
1826 |
py_vers_string = "%s.%s"%(sys.version_info[0],sys.version_info[1]) |
20 |
|
|
|
21 |
phornby |
869 |
# locations of include files for python |
22 |
phornby |
1826 |
python_path = "/usr/include/python" + py_vers_string |
23 |
phornby |
869 |
python_lib_path = '/usr/lib' |
24 |
phornby |
1826 |
python_lib = "python" + py_vers_string |
25 |
phornby |
869 |
|
26 |
|
|
# locations of libraries for boost |
27 |
|
|
boost_path = '/usr/include' |
28 |
ksteube |
1250 |
boost_lib_path = '/usr/lib' |
29 |
|
|
boost_lib = 'boost_python' |
30 |
phornby |
869 |
|
31 |
phornby |
1628 |
useNetCDF = 'yes' |
32 |
phornby |
1826 |
netCDF_path = '/usr/include' |
33 |
|
|
netCDF_lib_path = '/usr/lib' |
34 |
phornby |
1628 |
netCDF_libs = ['netcdf', 'netcdf_c++'] |
35 |
|
|
|
36 |
phornby |
869 |
# locations of doc building executables |
37 |
|
|
doxygen_path = '/usr/bin' |
38 |
|
|
epydoc_path = '/usr/bin' |
39 |
|
|
|
40 |
|
|
# c flags to use |
41 |
phornby |
1826 |
cc_flags = '-fpic -Wno-unknown-pragmas' |
42 |
|
|
cc_optim = '-O3' |
43 |
|
|
cc_debug = '-g' |
44 |
phornby |
869 |
|
45 |
|
|
# static library archiver flags to use |
46 |
|
|
#ar_flags = 'crus' |
47 |
|
|
|
48 |
|
|
# system specific libraries to link with |
49 |
|
|
#sys_libs = [] |