4 |
python_lib = 'python23' |
python_lib = 'python23' |
5 |
|
|
6 |
# locations of libraries for boost |
# locations of libraries for boost |
7 |
boost_path = 'c:/woo409/development/boost_1_33' |
boost_path = 'Q:/src/boost' |
8 |
boost_lib_path = 'c:/woo409/development/boost_1_33/windows_binary/lib' |
boost_lib_path = 'Q:/src/boost/windows_binary/lib' |
9 |
boost_lib = 'boost_python-vc71-mt-gd' |
boost_lib = 'boost_python-vc71-mt-s-1_31' |
10 |
|
|
11 |
cc_defines = ['_USE_MATH_DEFINES', ] |
# 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 |
# c flags to use |
# c flags to use |
18 |
# 1563 - taking adress of a temporary |
# 1563 - taking adress of a temporary |
19 |
# 811 - exception specification for implicitly declared virtual function (destructor usually) incompatible with that of override |
# 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 |
# 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' |
cc_flags = '/GR /EHsc /MD /Qc99 /Qopenmp /Qopenmp-report1 /O3 /G7 /Qprec /Qparallel /Qpar-report1 /QxP /QaxP' |
|
#cc_flags = '/GR /EHsc /MD /Qc99 /O3 /G7 /Qprec /QxP /QaxP' |
|
22 |
|
|
23 |
cc_flags_debug = '/Od /MDd /RTC1 /GR /EHsc /Qc99 /Qopenmp /Qopenmp-report1 /Qprec' |
cc_flags_debug = '/Od /MDd /RTC1 /GR /EHsc /Qc99 /Qopenmp /Qopenmp-report1 /Qprec' |
24 |
|
|