1 |
|
2 |
######################################################## |
3 |
# |
4 |
# Copyright (c) 2003-2008 by University of Queensland |
5 |
# Earth Systems Science Computational Center (ESSCC) |
6 |
# http://www.uq.edu.au/esscc |
7 |
# |
8 |
# Primary Business: Queensland, Australia |
9 |
# Licensed under the Open Software License version 3.0 |
10 |
# http://www.opensource.org/licenses/osl-3.0.php |
11 |
# |
12 |
######################################################## |
13 |
|
14 |
|
15 |
# locations of include files for python |
16 |
python_path = 'C:/python23/include' |
17 |
python_lib_path = 'C:/python23/libs' |
18 |
python_lib = 'python23' |
19 |
|
20 |
# locations of libraries for boost |
21 |
boost_path = 'c:/woo409/development/boost_1_33' |
22 |
boost_lib_path = 'c:/woo409/development/boost_1_33/windows_binary/lib' |
23 |
boost_lib = 'boost_python-vc71-mt-gd' |
24 |
|
25 |
cc_defines = ['_USE_MATH_DEFINES', ] |
26 |
# c flags to use |
27 |
# 1563 - taking adress of a temporary |
28 |
# 811 - exception specification for implicitly declared virtual function (destructor usually) incompatible with that of override |
29 |
# 161 - openmp pargmas are unknown when not compiling with openmp |
30 |
cc_flags = '/GR /EHsc /MD /Qc99 /Qopenmp /Qopenmp-report1 /O3 /G7 /Qprec /Qparallel /Qpar-report1 /QxP /QaxP' |
31 |
#cc_flags = '/GR /EHsc /MD /Qc99 /O3 /G7 /Qprec /QxP /QaxP' |
32 |
|
33 |
cc_flags_debug = '/Od /MDd /RTC1 /GR /EHsc /Qc99 /Qopenmp /Qopenmp-report1 /Qprec' |
34 |
|
35 |
# c++ flags to use |
36 |
cxx_flags = '' |
37 |
cxx_flags_debug = '' |
38 |
# static library archiver flags to use |
39 |
#ar_flags = 'crus' |
40 |
|
41 |
# system specific libraries to link with |
42 |
sys_libs = [] |