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 |
# locations of doc building executables |
30 |
doxygen_path = '/usr/bin' |
31 |
epydoc_path = '/usr/bin' |
32 |
|
33 |
# c flags to use |
34 |
cc_flags = '-O3 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas' |
35 |
cc_flags_debug = '-g -O0 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas' |
36 |
|
37 |
# c++ flags to use |
38 |
cxx_flags = '-ansi' |
39 |
cxx_flags_debug = '-ansi -DDOASSERT -DDOPROF' |
40 |
|
41 |
# static library archiver flags to use |
42 |
#ar_flags = 'crus' |
43 |
|
44 |
# system specific libraries to link with |
45 |
#sys_libs = [] |