1 |
# |
2 |
# $Id$ |
3 |
# |
4 |
####################################################### |
5 |
# |
6 |
# Copyright 2003-2007 by ACceSS MNRF |
7 |
# Copyright 2007 by University of Queensland |
8 |
# |
9 |
# http://esscc.uq.edu.au |
10 |
# Primary Business: Queensland, Australia |
11 |
# Licensed under the Open Software License version 3.0 |
12 |
# http://www.opensource.org/licenses/osl-3.0.php |
13 |
# |
14 |
####################################################### |
15 |
# |
16 |
|
17 |
import sys, os |
18 |
|
19 |
source_root = os.path.realpath('.') |
20 |
|
21 |
pyinstall = os.path.join(source_root,'esys') |
22 |
incinstall = os.path.join(source_root,'include') |
23 |
libinstall = os.path.join(source_root,'lib') |
24 |
exinstall = os.path.join(source_root,'examples') |
25 |
|
26 |
# locations of files for python |
27 |
py_vers = '%s%s'%(sys.version_info[0],sys.version_info[1]) |
28 |
python_root = 'C:/python' + py_vers |
29 |
python_cmd = os.path.join(python_root,'python') |
30 |
python_path = os.path.join(python_root,'include') |
31 |
python_lib_path = os.path.join(python_root,'libs') |
32 |
python_lib = 'python' + py_vers |
33 |
|
34 |
# locations of libraries for boost |
35 |
dotdot = os.path.realpath('..') |
36 |
boost_path = os.path.join(dotdot,'boost-1.33') |
37 |
boost_lib_path = os.path.join(boost_path,'windows_binary','lib') |
38 |
boost_lib = 'boost_python-vc71-mt-1_33_1.lib' |
39 |
|
40 |
# locations of netcdf |
41 |
useNetCDF = "yes" |
42 |
netCDF_root = os.path.join(dotdot,"netcdf") |
43 |
netCDF_path = os.path.join(netCDF_root,"src","include") |
44 |
netCDF_lib_path = os.path.join(netCDF_root,'lib') |
45 |
netCDF_libs = ["netcdf", "netcdf_cpp" ] |
46 |
|
47 |
cc_defines = ['_USE_MATH_DEFINES', 'DLL_NETCDF', 'BOOST_NO_INTRINSIC_WCHAR_T' ] |
48 |
# c flags to use |
49 |
# 1563 - taking adress of a temporary |
50 |
# 811 - exception specification for implicitly declared virtual function (destructor usually) incompatible with that of override |
51 |
# 161 - openmp pargmas are unknown when not compiling with openmp |
52 |
cc_common_flags = '/FD /EHsc /GR /Qvc7.1 ' |
53 |
cc_flags = cc_common_flags + '/O2 /Op /MD /W3' |
54 |
|
55 |
cc_flags_debug = cc_common_flags + '/Od /RTC1 /MDd /ZI' |
56 |
|
57 |
# c++ flags to use |
58 |
cxx_flags = '' |
59 |
cxx_flags_debug = '' |
60 |
|
61 |
# linker flags to use |
62 |
#link_flags = '' |
63 |
link_flags_debug = '/debug /incremental:no /opt:ref /opt:icf' |
64 |
|
65 |
# static library archiver flags to use |
66 |
#ar_flags = 'crus' |
67 |
|
68 |
# system specific libraries to link with |
69 |
sys_libs = ["C:/Program Files/Microsoft Visual Studio .NET 2003/Vc7/PlatformSDK/Lib/Ws2_32"] |