1 |
import sys |
2 |
|
3 |
# locations of include files for python |
4 |
python_path = "/usr/include/python%s.%s"%(sys.version_info[0],sys.version_info[1]) |
5 |
python_lib_path = '/usr/lib' |
6 |
python_lib = "python%s.%s"%(sys.version_info[0],sys.version_info[1]) |
7 |
|
8 |
# locations of libraries for boost |
9 |
boost_path = '/usr/include' |
10 |
boost_lib_path = '/usr/lib' |
11 |
boost_lib = 'boost_python' |
12 |
|
13 |
# locations of doc building executables |
14 |
doxygen_path = '/usr/bin' |
15 |
epydoc_path = '/usr/bin' |
16 |
|
17 |
# c flags to use |
18 |
cc_flags = '-O3 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas' |
19 |
cc_flags_debug = '-g -O0 -std=c99 -fpic --no-warn -W -Wno-unknown-pragmas' |
20 |
|
21 |
# c++ flags to use |
22 |
cxx_flags = '-ansi' |
23 |
cxx_flags_debug = '-ansi -DDOASSERT -DDOPROF' |
24 |
|
25 |
# static library archiver flags to use |
26 |
#ar_flags = 'crus' |
27 |
|
28 |
# system specific libraries to link with |
29 |
#sys_libs = [] |