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 |
1232 |
boost_path = '../boost' |
8 |
|
|
boost_libs_path = '../boost/windows_binary/lib' |
9 |
ksteube |
1139 |
boost_libs = 'boost_python-vc71-mt-s-1_31' |
10 |
phornby |
869 |
|
11 |
phornby |
1019 |
# locations of netcdf |
12 |
phornby |
1232 |
useNetCDF = "no" |
13 |
|
|
netCDF_path = "..//netcdf/src/include" |
14 |
|
|
netCDF_lib_path = "../netcdf/src/win32/NET/release" |
15 |
|
|
netCDF_libs_cxx = [ 'netcdf', 'netcdf_cpp' ] |
16 |
phornby |
1019 |
|
17 |
|
|
cc_defines = ['_USE_MATH_DEFINES', 'BOOST_NO_INTRINSIC_WCHAR_T', 'DLL_NETCDF' ] |
18 |
phornby |
869 |
# 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 |
phornby |
1232 |
cc_common_flags = '/FD /EHsc /GR /wd4068 ' |
23 |
|
|
cc_flags = cc_common_flags + '/O2 /Op /MT /W3' |
24 |
phornby |
869 |
|
25 |
phornby |
1232 |
cc_flags_debug = cc_common_flags + '/Od /RTC1 /MTd /ZI' |
26 |
phornby |
869 |
|
27 |
|
|
# c++ flags to use |
28 |
|
|
cxx_flags = '' |
29 |
|
|
cxx_flags_debug = '' |
30 |
|
|
# static library archiver flags to use |
31 |
|
|
#ar_flags = 'crus' |
32 |
|
|
|
33 |
|
|
# system specific libraries to link with |
34 |
|
|
sys_libs = [] |