1 |
|
import os |
2 |
|
|
3 |
# locations of include files for python |
# locations of include files for python |
4 |
python_path = 'C:/python23/include' |
python_path = 'C:/python23/include' |
5 |
python_lib_path = 'C:/python23/libs' |
python_lib_path = 'C:/python23/libs' |
6 |
python_lib = 'python23' |
python_lib = 'python23' |
7 |
|
|
8 |
# locations of libraries for boost |
# locations of libraries for boost |
9 |
boost_path = 'Q:/src/boost' |
boost_path = os.path.realpath('../boost') |
10 |
boost_libs_path = 'Q:/src/boost/windows_binary/lib' |
boost_libs_path = os.path.realpath('../boost/windows_binary/lib') |
11 |
boost_libs = 'boost_python-vc71-mt-s-1_31' |
boost_libs = 'boost_python-vc71-mt-s-1_31' |
12 |
|
|
13 |
# locations of netcdf |
# locations of netcdf |
14 |
useNetCDF="yes" |
useNetCDF = "no" |
15 |
netCDF_path = "Q:/src/netcdf/src/include" |
netCDF_path = os.path.realpath("..//netcdf/src/include") |
16 |
netCDF_lib_path = "Q:/src/netcdf/src/win32/NET/release" |
netCDF_lib_path = os.path.realpath("../netcdf/src/win32/NET/release") |
17 |
netCDF_libs = [ 'netcdf', 'netcdf_cpp' ] |
netCDF_libs_cxx = [ 'netcdf', 'netcdf_cpp' ] |
18 |
|
|
19 |
cc_defines = ['_USE_MATH_DEFINES', 'BOOST_NO_INTRINSIC_WCHAR_T', 'DLL_NETCDF' ] |
cc_defines = ['_USE_MATH_DEFINES', 'DLL_NETCDF' ] |
20 |
# c flags to use |
# c flags to use |
21 |
# 1563 - taking adress of a temporary |
# 1563 - taking adress of a temporary |
22 |
# 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 |