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 |
# locations of include files for python |
18 |
python_path = 'C:/python23/include' |
19 |
python_lib_path = 'C:/python23/libs' |
20 |
python_lib = 'python23' |
21 |
|
22 |
# locations of libraries for boost |
23 |
boost_path = 'c:/woo409/development/boost_1_33' |
24 |
boost_lib_path = 'c:/woo409/development/boost_1_33/windows_binary/lib' |
25 |
boost_lib = 'boost_python-vc71-mt-gd' |
26 |
|
27 |
cc_defines = ['_USE_MATH_DEFINES', ] |
28 |
# c flags to use |
29 |
# 1563 - taking adress of a temporary |
30 |
# 811 - exception specification for implicitly declared virtual function (destructor usually) incompatible with that of override |
31 |
# 161 - openmp pargmas are unknown when not compiling with openmp |
32 |
cc_flags = '/GR /EHsc /MD /Qc99 /Qopenmp /Qopenmp-report1 /O3 /G7 /Qprec /Qparallel /Qpar-report1 /QxP /QaxP' |
33 |
#cc_flags = '/GR /EHsc /MD /Qc99 /O3 /G7 /Qprec /QxP /QaxP' |
34 |
|
35 |
cc_flags_debug = '/Od /MDd /RTC1 /GR /EHsc /Qc99 /Qopenmp /Qopenmp-report1 /Qprec' |
36 |
|
37 |
# c++ flags to use |
38 |
cxx_flags = '' |
39 |
cxx_flags_debug = '' |
40 |
# static library archiver flags to use |
41 |
#ar_flags = 'crus' |
42 |
|
43 |
# system specific libraries to link with |
44 |
sys_libs = [] |