1 |
# locations of include files for python |
2 |
python_path = 'C:/python23/include' |
3 |
python_lib_path = 'C:/python23/libs' |
4 |
python_lib = 'python23' |
5 |
|
6 |
# locations of libraries for boost |
7 |
boost_path = 'E:/woo409/development/boost_1_33' |
8 |
boost_lib_path = 'E:/woo409/development/boost_1_33/windows_binary/lib' |
9 |
boost_lib = 'boost_python-vc71-mt-gd' |
10 |
|
11 |
cc_defines = ['_USE_MATH_DEFINES', ] |
12 |
# c flags to use |
13 |
# 1563 - taking adress of a temporary |
14 |
# 811 - exception specification for implicitly declared virtual function (destructor usually) incompatible with that of override |
15 |
# 161 - openmp pargmas are unknown when not compiling with openmp |
16 |
cc_flags = '/GR /EHsc /MD /Qc99 /Qwd161 /G7 /O3 /Qprec /Qparallel /Qpar-report1' |
17 |
cc_flags_debug = '/Od /MDd /RTC1 /GR /EHsc /Qc99 /Qwd161 /Qprec' |
18 |
#cc_flags = '/GR /EHsc /MD /Qc99 /Qopenmp /Qopenmp-report0 /G7 /Qprec' |
19 |
#cc_flags_debug = '/Od /MDd /RTC1 /GR /EHsc /Qc99 /Qopenmp /Qopenmp-report0 /Qprec' |
20 |
|
21 |
# c++ flags to use |
22 |
cxx_flags = '' |
23 |
cxx_flags_debug = '' |
24 |
# static library archiver flags to use |
25 |
#ar_flags = 'crus' |
26 |
|
27 |
# system specific libraries to link with |
28 |
sys_libs = [] |