1 |
phornby |
869 |
# 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 |
phornby |
1019 |
boost_path = 'Q:/src/boost' |
8 |
|
|
boost_lib_path = 'Q:/src/boost/windows_binary/lib' |
9 |
|
|
boost_lib = 'boost_python-vc71-mt-s-1_31' |
10 |
phornby |
869 |
|
11 |
phornby |
1019 |
# locations of netcdf |
12 |
|
|
netCDF_path = "Q:/src/netcdf-3.6.1/src/include" |
13 |
|
|
netCDF_lib_path = "Q:/src/netcdf-3.6.1/src/win32/NET/debug" |
14 |
|
|
netCDF_libs_cxx = [ 'netcdf' ] |
15 |
|
|
|
16 |
|
|
cc_defines = ['_USE_MATH_DEFINES', 'BOOST_NO_INTRINSIC_WCHAR_T', 'DLL_NETCDF' ] |
17 |
phornby |
869 |
# c flags to use |
18 |
|
|
# 1563 - taking adress of a temporary |
19 |
|
|
# 811 - exception specification for implicitly declared virtual function (destructor usually) incompatible with that of override |
20 |
|
|
# 161 - openmp pargmas are unknown when not compiling with openmp |
21 |
|
|
cc_flags = '/GR /EHsc /MD /Qc99 /Qopenmp /Qopenmp-report1 /O3 /G7 /Qprec /Qparallel /Qpar-report1 /QxP /QaxP' |
22 |
|
|
|
23 |
|
|
cc_flags_debug = '/Od /MDd /RTC1 /GR /EHsc /Qc99 /Qopenmp /Qopenmp-report1 /Qprec' |
24 |
|
|
|
25 |
|
|
# c++ flags to use |
26 |
|
|
cxx_flags = '' |
27 |
|
|
cxx_flags_debug = '' |
28 |
|
|
# static library archiver flags to use |
29 |
|
|
#ar_flags = 'crus' |
30 |
|
|
|
31 |
|
|
# system specific libraries to link with |
32 |
|
|
sys_libs = [] |