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