1 |
# Copyright (c) 2001, 2002 by Intevation GmbH |
# Copyright (c) 2001, 2002, 2003 by Intevation GmbH |
2 |
# Authors: |
# Authors: |
3 |
# Bernhard Herzog <[email protected]> |
# Bernhard Herzog <[email protected]> |
4 |
# |
# |
80 |
proj4_lib = "proj_i" |
proj4_lib = "proj_i" |
81 |
|
|
82 |
# Define include and lib directories for wxWindows and |
# Define include and lib directories for wxWindows and |
83 |
wx_prefix = r"D:\wx230" |
wx_prefix = r"D:\wx240" |
84 |
wx_inc = os.path.join(wx_prefix, "include") |
wx_inc = [os.path.join(wx_prefix, 'lib', 'mswdllh'), |
85 |
wx_lib = os.path.join(wx_prefix, "lib") |
os.path.join(wx_prefix, "include")] |
86 |
|
wx_lib = [os.path.join(wx_prefix, "lib")] |
87 |
|
|
88 |
|
|
89 |
# |
# |
90 |
# Unless you use a wxPython version other than 2.3.1, you probably |
# Unless you use a wxPython version other than 2.4.0, you probably |
91 |
# shouldn't have to modify anything below here |
# shouldn't have to modify anything below here |
92 |
################################################################## |
################################################################## |
93 |
|
|
129 |
('WXP_USE_THREAD', '1'), |
('WXP_USE_THREAD', '1'), |
130 |
] |
] |
131 |
|
|
132 |
wx_incdirs = [wx_inc] |
wx_incdirs = wx_inc |
133 |
wx_libdirs = [wx_lib] |
wx_libdirs = wx_lib |
134 |
wx_libs = ["wx23_1h"] |
wx_libs = ["wxmsw24h"] |
135 |
|
|
136 |
wx_libs = wx_libs + ['kernel32', 'user32', 'gdi32', 'comdlg32', |
wx_libs = wx_libs + ['kernel32', 'user32', 'gdi32', 'comdlg32', |
137 |
'winspool', 'winmm', 'shell32', 'oldnames', |
'winspool', 'winmm', 'shell32', 'oldnames', |
138 |
'comctl32', 'ctl3d32', 'odbc32', 'ole32', 'oleaut32', |
'comctl32', 'ctl3d32', 'odbc32', 'ole32', 'oleaut32', |
491 |
distribution. |
distribution. |
492 |
""" |
""" |
493 |
|
|
494 |
|
# FIXME: When Thuban can rely on Python 2.3 as the oldest supported |
495 |
|
# Python release we don't need to override the run and |
496 |
|
# find_all_modules methods anymore. distutils will allow both python |
497 |
|
# modules and packages starting with 2.3. |
498 |
|
|
499 |
def run(self): |
def run(self): |
500 |
"""The same the as the original in build_py revision 1.33 except |
"""The same the as the original in build_py revision 1.33 except |
501 |
that this allows both packages and modules to be in one |
that this allows both packages and modules to be in one |