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 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 include files for python |
27 |
python_root = 'C:/python24' |
28 |
python_cmd = os.path.join(python_root,'python') |
29 |
python_path = os.path.join(python_root,'include') |
30 |
python_lib_path = os.path.join(python_root,'libs') |
31 |
python_lib = 'python24' |
32 |
|
33 |
# locations of libraries for boost |
34 |
dotdot = os.path.realpath('..') |
35 |
boost_path = os.path.join(dotdot,'boost-1.33') |
36 |
boost_lib_path = os.path.join(boost_path,'windows_binary','lib') |
37 |
boost_lib = 'boost_python-vc71-mt-s-1_33_1.lib' |
38 |
|
39 |
# locations of netcdf |
40 |
useNetCDF = "no" |
41 |
netCDF_path = os.path.realpath(".") |
42 |
netCDF_lib_path = os.path.realpath(".") |
43 |
netCDF_libs = [ ] |
44 |
|
45 |
cc_defines = ['_USE_MATH_DEFINES'] |
46 |
# c flags to use |
47 |
# 1563 - taking adress of a temporary |
48 |
# 811 - exception specification for implicitly declared virtual function (destructor usually) incompatible with that of override |
49 |
# 161 - openmp pargmas are unknown when not compiling with openmp |
50 |
cc_common_flags = '/FD /EHsc /GR /wd4068 ' |
51 |
cc_flags = cc_common_flags + '/O2 /Op /MT /W3' |
52 |
|
53 |
cc_flags_debug = cc_common_flags + '/Od /RTC1 /MTd /ZI /Yd /Y-' |
54 |
|
55 |
# c++ flags to use |
56 |
cxx_flags = '' |
57 |
cxx_flags_debug = '' |
58 |
|
59 |
# linker flags to use |
60 |
#link_flags = '' |
61 |
link_flags_debug = '/debug /incremental:no /opt:ref /opt:icf' |
62 |
|
63 |
# static library archiver flags to use |
64 |
#ar_flags = 'crus' |
65 |
|
66 |
# system specific libraries to link with |
67 |
sys_libs = [] |