--- trunk/scons/windows_intelc_options.py 2007/03/12 07:35:46 1017 +++ trunk/scons/windows_intelc_options.py 2007/03/12 10:04:54 1019 @@ -4,17 +4,21 @@ python_lib = 'python23' # locations of libraries for boost -boost_path = 'c:/woo409/development/boost_1_33' -boost_lib_path = 'c:/woo409/development/boost_1_33/windows_binary/lib' -boost_lib = 'boost_python-vc71-mt-gd' +boost_path = 'Q:/src/boost' +boost_lib_path = 'Q:/src/boost/windows_binary/lib' +boost_lib = 'boost_python-vc71-mt-s-1_31' -cc_defines = ['_USE_MATH_DEFINES', ] +# locations of netcdf +netCDF_path = "Q:/src/netcdf-3.6.1/src/include" +netCDF_lib_path = "Q:/src/netcdf-3.6.1/src/win32/NET/debug" +netCDF_libs_cxx = [ 'netcdf' ] + +cc_defines = ['_USE_MATH_DEFINES', 'BOOST_NO_INTRINSIC_WCHAR_T', 'DLL_NETCDF' ] # c flags to use # 1563 - taking adress of a temporary # 811 - exception specification for implicitly declared virtual function (destructor usually) incompatible with that of override # 161 - openmp pargmas are unknown when not compiling with openmp 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' cc_flags_debug = '/Od /MDd /RTC1 /GR /EHsc /Qc99 /Qopenmp /Qopenmp-report1 /Qprec'