]> git.saurik.com Git - wxWidgets.git/blob - wxPython/setup.py
Added wxTopLevelWindow related files
[wxWidgets.git] / wxPython / setup.py
1 #!/usr/bin/env python
2 #----------------------------------------------------------------------
3
4 import sys, os, string
5 from distutils.core import setup, Extension
6 from distutils.file_util import copy_file
7 from distutils.dir_util import mkpath
8 from distutils.dep_util import newer
9
10 from my_distutils import run_swig, contrib_copy_tree
11
12 #----------------------------------------------------------------------
13 # flags and values that affect this script
14 #----------------------------------------------------------------------
15
16 VERSION = "2.3.2b4"
17 DESCRIPTION = "Cross platform GUI toolkit for Python"
18 AUTHOR = "Robin Dunn"
19 AUTHOR_EMAIL = "Robin Dunn <robin@alldunn.com>"
20 URL = "http://wxPython.org/"
21 LICENCE = "wxWindows (LGPL derivative)"
22 LONG_DESCRIPTION = """\
23 wxPython is a GUI toolkit for Python that is a wrapper around the
24 wxWindows C++ GUI library. wxPython provides a large variety of
25 window types and controls, all implemented with a native look and
26 feel (and native runtime speed) on the platforms it is supported
27 on.
28 """
29
30
31 BUILD_GLCANVAS = 1 # If true, build the contrib/glcanvas extension module
32 BUILD_OGL = 1 # If true, build the contrib/ogl extension module
33 BUILD_STC = 1 # If true, build the contrib/stc extension module
34 BUILD_IEWIN = 0 # Internet Explorer wrapper (experimental)
35 BUILD_XRC = 1 # XML based resource system
36
37
38 CORE_ONLY = 0 # if true, don't build any of the above
39 GL_ONLY = 0 # Only used when making the -gl RPM. See the "b" script
40 # for the ugly details
41
42 USE_SWIG = 0 # Should we actually execute SWIG, or just use the
43 # files already in the distribution?
44
45 IN_CVS_TREE = 0 # Set to true if building in a full wxWindows CVS
46 # tree, otherwise will assume all needed files are
47 # available in the wxPython source distribution
48
49 WX_CONFIG = "wx-config" # Usually you shouldn't need to touch this,
50 # but you can set it to pass an alternate
51 # version of wx-config or alternate flags,
52 # eg. as required by the .deb in-tree build.
53
54 # Some MSW build settings
55
56 FINAL = 1 # Mirrors use of same flag in wx makefiles,
57 # (0 or 1 only) should probably find a way to
58 # autodetect this...
59
60 HYBRID = 0 # If set and not debug or FINAL, then build a
61 # hybrid extension that can be used by the
62 # non-debug version of python, but contains
63 # debugging symbols for wxWindows and wxPython.
64 # wxWindows must have been built with /MD, not /MDd
65 # (using FINAL=hybrid will do it.)
66
67 WXDLLVER = '23_2' # Version part of DLL name
68
69
70 #----------------------------------------------------------------------
71
72 def msg(text):
73 if __name__ == "__main__":
74 print text
75
76 def opj(*args):
77 path = apply(os.path.join, args)
78 return os.path.normpath(path)
79
80 #----------------------------------------------------------------------
81 # Some other globals
82 #----------------------------------------------------------------------
83
84 PKGDIR = 'wxPython'
85 wxpExtensions = []
86
87 force = '--force' in sys.argv or '-f' in sys.argv
88 debug = '--debug' in sys.argv or '-g' in sys.argv
89
90 bcpp_compiling = '-c' in sys.argv and 'my_bcpp' in sys.argv # Bad heuristic
91
92 if bcpp_compiling:
93 msg("Compiling wxPython by Borland C/C++ Compiler")
94 HYBRID=0
95 WXBCPPLIBVER = string.replace(WXDLLVER,"_","")
96 # Version part of BCPP build LIBRARY name
97 WXDLLVER="" # no dll ver path avaible
98
99
100 #----------------------------------------------------------------------
101 # Check for build flags on the command line
102 #----------------------------------------------------------------------
103
104 for flag in ['BUILD_GLCANVAS', 'BUILD_OGL', 'BUILD_STC', 'BUILD_XRC',
105 'CORE_ONLY', 'USE_SWIG', 'IN_CVS_TREE',
106 'FINAL', 'HYBRID', ]:
107 for x in range(len(sys.argv)):
108 if string.find(sys.argv[x], flag) == 0:
109 pos = string.find(sys.argv[x], '=') + 1
110 if pos > 0:
111 vars()[flag] = eval(sys.argv[x][pos:])
112 sys.argv[x] = ''
113
114 for option in ['WX_CONFIG', 'WXDLLVER', ]:
115 for x in range(len(sys.argv)):
116 if string.find(sys.argv[x], option) == 0:
117 pos = string.find(sys.argv[x], '=') + 1
118 if pos > 0:
119 vars()[option] = sys.argv[x][pos:]
120 sys.argv[x] = ''
121
122 sys.argv = filter(None, sys.argv)
123
124
125 if CORE_ONLY:
126 BUILD_GLCANVAS = 0
127 BUILD_OGL = 0
128 BUILD_STC = 0
129 BUILD_XRC = 0
130
131 #----------------------------------------------------------------------
132 # Setup some platform specific stuff
133 #----------------------------------------------------------------------
134
135 if os.name == 'nt':
136 # Set compile flags and such for MSVC. These values are derived
137 # from the wxWindows makefiles for MSVC, others will probably
138 # vary...
139 WXDIR = os.environ['WXWIN']
140 WXPLAT = '__WXMSW__'
141 GENDIR = 'msw'
142
143 if debug:
144 FINAL = 0
145 HYBRID = 0
146
147 if HYBRID:
148 FINAL = 0
149
150 includes = ['src',
151 opj(WXDIR, 'include'),
152 ]
153
154 defines = [ ('WIN32', None), # Some of these are no longer
155 ('__WIN32__', None), # necessary. Anybody know which?
156 ('_WINDOWS', None),
157 ('__WINDOWS__', None),
158 ('WINVER', '0x0400'),
159 ('__WIN95__', None),
160 ('STRICT', None),
161
162 (WXPLAT, None),
163 ('WXUSINGDLL', '1'),
164
165 ('SWIG_GLOBAL', None),
166 ('HAVE_CONFIG_H', None),
167 ('WXP_USE_THREAD', '1'),
168 ]
169
170 if bcpp_compiling: # overwrite it
171 defines = [
172 ('_WINDOWS', None),
173 ('WINVER', '0x0400'),
174 ('STRICT', None),
175
176 ('WXUSINGDLL', '1'),
177
178 ('SWIG_GLOBAL', None),
179 ('HAVE_CONFIG_H', None),
180 ('WXP_USE_THREAD', '1'),
181
182 ('WXUSE_DEFINE','1'),
183 ('_RTLDLL',None),
184 ]
185
186
187 if not FINAL or HYBRID:
188 defines.append( ('__WXDEBUG__', None) )
189
190 libdirs = [opj(WXDIR, 'lib'), 'build\\ilib']
191
192 if FINAL:
193 wxdll = 'wx' + WXDLLVER
194 elif HYBRID:
195 wxdll = 'wx' + WXDLLVER + 'h'
196 else:
197 wxdll = 'wx' + WXDLLVER + 'd'
198
199
200 libs = [wxdll]
201 if bcpp_compiling:
202 libs = ['wx'+WXBCPPLIBVER]
203
204 libs = libs + ['kernel32', 'user32', 'gdi32', 'comdlg32',
205 'winspool', 'winmm', 'shell32', 'oldnames', 'comctl32',
206 'ctl3d32', 'odbc32', 'ole32', 'oleaut32', 'uuid', 'rpcrt4',
207 'advapi32', 'wsock32']
208
209
210 cflags = [] #['/GX-'] # workaround for internal compiler error in MSVC on some machines
211 lflags = None
212
213
214 if bcpp_compiling: # overwrite it
215 cflags = ['-5', '-VF', ### To supplort MSVC spurious semicolons in the class scope
216 ### else, all semicolons at the end of all DECLARE_...CALLBACK... macros must be eliminated
217 '-Hc', '-H=' + opj(WXDIR, '\src\msw\wx32.csm'),
218 '@' + opj(WXDIR, '\src\msw\wxwin32.cfg')
219 ]
220
221
222 if not FINAL and HYBRID and not bcpp_compiling:
223 cflags = cflags + ['/Od', '/Z7']
224 lflags = ['/DEBUG', ]
225
226 elif bcpp_compiling and not FINAL:
227 cflags = cflags + ['/Od', '/v', '/y']
228 lflags = lflags + ['/v', ] ## '/PDB:NONE']
229
230
231
232 elif os.name == 'posix':
233 # Set flags for Unix type platforms
234
235 WXDIR = '..' # assumes IN_CVS_TREE
236 WXPLAT = '__WXGTK__' # and assumes GTK...
237 GENDIR = 'gtk' # Need to allow for Motif eventually too
238
239 includes = ['src']
240 defines = [('SWIG_GLOBAL', None),
241 ('HAVE_CONFIG_H', None),
242 ('WXP_USE_THREAD', '1'),
243 ]
244 libdirs = []
245 libs = []
246
247 cflags = os.popen(WX_CONFIG + ' --cflags', 'r').read()[:-1] + ' ' + \
248 os.popen('gtk-config --cflags', 'r').read()[:-1]
249 cflags = string.split(cflags)
250
251 lflags = os.popen(WX_CONFIG + ' --libs', 'r').read()[:-1]
252 lflags = string.split(lflags)
253
254
255 else:
256 raise 'Sorry Charlie...'
257
258
259 #----------------------------------------------------------------------
260 # Check if the version file needs updated
261 #----------------------------------------------------------------------
262
263 if IN_CVS_TREE and newer('setup.py', 'src/__version__.py'):
264 open('src/__version__.py', 'w').write("ver = '%s'\n" % VERSION)
265
266
267
268 #----------------------------------------------------------------------
269 # SWIG defaults
270 #----------------------------------------------------------------------
271
272 swig_force = force
273 swig_args = ['-c++', '-shadow', '-python', '-keyword',
274 '-dnone',
275 #'-dascii',
276 #'-docstring', '-Sbefore',
277 '-I./src', '-D'+WXPLAT]
278 swig_deps = ['src/my_typemaps.i']
279
280
281 #----------------------------------------------------------------------
282 # Define the CORE extension module
283 #----------------------------------------------------------------------
284
285 if not GL_ONLY:
286 msg('Preparing CORE...')
287 swig_files = [ 'wx.i', 'windows.i', 'windows2.i', 'windows3.i', 'events.i',
288 'misc.i', 'misc2.i', 'gdi.i', 'mdi.i', 'controls.i',
289 'controls2.i', 'cmndlgs.i', 'stattool.i', 'frames.i', 'image.i',
290 'printfw.i', 'sizers.i', 'clip_dnd.i',
291 'filesys.i', 'streams.i',
292 ##'grid.i', 'html.i', 'htmlhelp.i', 'calendar.i', 'utils.i',
293 ]
294
295 swig_sources = run_swig(swig_files, 'src', GENDIR, PKGDIR,
296 USE_SWIG, swig_force, swig_args, swig_deps)
297
298 copy_file('src/__init__.py', PKGDIR, update=1, verbose=0)
299 copy_file('src/__version__.py', PKGDIR, update=1, verbose=0)
300
301
302 if IN_CVS_TREE: # update the licence files
303 mkpath('licence')
304 for file in ['preamble.txt', 'licence.txt', 'licendoc.txt', 'lgpl.txt']:
305 copy_file(opj(WXDIR, 'docs', file), opj('licence',file), update=1, verbose=0)
306
307
308 if os.name == 'nt':
309 rc_file = ['src/wxc.rc']
310 else:
311 rc_file = []
312
313
314 ext = Extension('wxc', ['src/helpers.cpp',
315 'src/libpy.c',
316 ] + rc_file + swig_sources,
317
318 include_dirs = includes,
319 define_macros = defines,
320
321 library_dirs = libdirs,
322 libraries = libs,
323
324 extra_compile_args = cflags,
325 extra_link_args = lflags,
326 )
327 wxpExtensions.append(ext)
328
329
330 # Extension for the grid module
331 swig_sources = run_swig(['grid.i'], 'src', GENDIR, PKGDIR,
332 USE_SWIG, swig_force, swig_args, swig_deps)
333 ext = Extension('gridc', swig_sources,
334 include_dirs = includes,
335 define_macros = defines,
336 library_dirs = libdirs,
337 libraries = libs,
338 extra_compile_args = cflags,
339 extra_link_args = lflags,
340 )
341 wxpExtensions.append(ext)
342
343
344 # Extension for the html modules
345 swig_sources = run_swig(['html.i', 'htmlhelp.i'], 'src', GENDIR, PKGDIR,
346 USE_SWIG, swig_force, swig_args, swig_deps)
347 ext = Extension('htmlc', swig_sources,
348 include_dirs = includes,
349 define_macros = defines,
350 library_dirs = libdirs,
351 libraries = libs,
352 extra_compile_args = cflags,
353 extra_link_args = lflags,
354 )
355 wxpExtensions.append(ext)
356
357
358 # Extension for the utils module
359 swig_sources = run_swig(['utils.i'], 'src', GENDIR, PKGDIR,
360 USE_SWIG, swig_force, swig_args, swig_deps)
361 ext = Extension('utilsc', swig_sources,
362 include_dirs = includes,
363 define_macros = defines,
364 library_dirs = libdirs,
365 libraries = libs,
366 extra_compile_args = cflags,
367 extra_link_args = lflags,
368 )
369 wxpExtensions.append(ext)
370
371
372 # Extension for the calendar module
373 swig_sources = run_swig(['calendar.i'], 'src', GENDIR, PKGDIR,
374 USE_SWIG, swig_force, swig_args, swig_deps)
375 ext = Extension('calendarc', swig_sources,
376 include_dirs = includes,
377 define_macros = defines,
378 library_dirs = libdirs,
379 libraries = libs,
380 extra_compile_args = cflags,
381 extra_link_args = lflags,
382 )
383 wxpExtensions.append(ext)
384
385
386 # Extension for the help module
387 swig_sources = run_swig(['help.i'], 'src', GENDIR, PKGDIR,
388 USE_SWIG, swig_force, swig_args, swig_deps)
389 ext = Extension('helpc', swig_sources,
390 include_dirs = includes,
391 define_macros = defines,
392 library_dirs = libdirs,
393 libraries = libs,
394 extra_compile_args = cflags,
395 extra_link_args = lflags,
396 )
397 wxpExtensions.append(ext)
398
399
400 #----------------------------------------------------------------------
401 # Define the GLCanvas extension module
402 #----------------------------------------------------------------------
403
404 CTRB_SRC = opj(WXDIR, 'contrib/src')
405 CTRB_INC = opj(WXDIR, 'contrib/include/wx')
406
407 if BUILD_GLCANVAS or GL_ONLY:
408 msg('Preparing GLCANVAS...')
409 location = 'contrib/glcanvas'
410 swig_files = ['glcanvas.i']
411 other_sources = []
412
413 swig_sources = run_swig(swig_files, location, GENDIR, PKGDIR,
414 USE_SWIG, swig_force, swig_args)
415
416 gl_libs = []
417 if os.name == 'posix':
418 gl_libs = os.popen(WX_CONFIG + ' --gl-libs', 'r').read()[:-1]
419 gl_libs = string.split(gl_libs)
420 else:
421 other_sources = [opj(location, 'msw/myglcanvas.cpp')]
422 gl_libs = ['opengl32', 'glu32']
423
424
425 ext = Extension('glcanvasc',
426 swig_sources + other_sources,
427
428 include_dirs = includes,
429 define_macros = defines,
430
431 library_dirs = libdirs,
432 libraries = libs,
433
434 extra_compile_args = cflags,
435 extra_link_args = gl_libs + lflags,
436 )
437
438 wxpExtensions.append(ext)
439
440
441 #----------------------------------------------------------------------
442 # Define the OGL extension module
443 #----------------------------------------------------------------------
444
445 if not GL_ONLY and BUILD_OGL:
446 msg('Preparing OGL...')
447 location = 'contrib/ogl'
448 OGLLOC = opj(location, 'contrib/src/ogl')
449 OGLINC = opj(location, 'contrib/include')
450
451 swig_files = ['ogl.i', 'oglbasic.i', 'oglshapes.i', 'oglshapes2.i',
452 'oglcanvas.i']
453
454 swig_sources = run_swig(swig_files, location, '', PKGDIR,
455 USE_SWIG, swig_force, swig_args)
456
457 if IN_CVS_TREE:
458 # make sure local copy of contrib files are up to date
459 contrib_copy_tree(opj(CTRB_INC, 'ogl'), opj(OGLINC, 'wx/ogl'))
460 contrib_copy_tree(opj(CTRB_SRC, 'ogl'), OGLLOC)
461
462 ext = Extension('oglc', ['%s/basic.cpp' % OGLLOC,
463 '%s/bmpshape.cpp' % OGLLOC,
464 '%s/composit.cpp' % OGLLOC,
465 '%s/divided.cpp' % OGLLOC,
466 '%s/lines.cpp' % OGLLOC,
467 '%s/misc.cpp' % OGLLOC,
468 '%s/basic2.cpp' % OGLLOC,
469 '%s/canvas.cpp' % OGLLOC,
470 '%s/constrnt.cpp' % OGLLOC,
471 '%s/drawn.cpp' % OGLLOC,
472 '%s/mfutils.cpp' % OGLLOC,
473 '%s/ogldiag.cpp' % OGLLOC,
474 ] + swig_sources,
475
476 include_dirs = [OGLINC] + includes,
477 define_macros = defines,
478
479 library_dirs = libdirs,
480 libraries = libs,
481
482 extra_compile_args = cflags,
483 extra_link_args = lflags,
484 )
485
486 wxpExtensions.append(ext)
487
488
489
490 #----------------------------------------------------------------------
491 # Define the STC extension module
492 #----------------------------------------------------------------------
493
494 if not GL_ONLY and BUILD_STC:
495 msg('Preparing STC...')
496 location = 'contrib/stc'
497 STCLOC = opj(location, 'contrib/src/stc')
498 STCINC = opj(location, 'contrib/include')
499 STC_H = opj(location, 'contrib/include/wx/stc')
500
501 if IN_CVS_TREE:
502 # Check if gen_iface needs to be run for the wxSTC sources
503 if (newer(opj(CTRB_SRC, 'stc/stc.h.in'), opj(CTRB_INC, 'stc/stc.h' )) or
504 newer(opj(CTRB_SRC, 'stc/stc.cpp.in'), opj(CTRB_SRC, 'stc/stc.cpp')) or
505 newer(opj(CTRB_SRC, 'stc/gen_iface.py'), opj(CTRB_SRC, 'stc/stc.cpp'))):
506
507 msg('Running gen_iface.py, regenerating stc.h and stc.cpp...')
508 cwd = os.getcwd()
509 os.chdir(opj(CTRB_SRC, 'stc'))
510 import gen_iface
511 gen_iface.main([])
512 os.chdir(cwd)
513
514
515 # make sure local copy of contrib files are up to date
516 contrib_copy_tree(opj(CTRB_INC, 'stc'), opj(STCINC, 'wx/stc'))
517 contrib_copy_tree(opj(CTRB_SRC, 'stc'), STCLOC)
518
519
520
521 swig_files = ['stc_.i']
522 swig_sources = run_swig(swig_files, location, '', PKGDIR,
523 USE_SWIG, swig_force,
524 swig_args + ['-I'+STC_H, '-I'+location],
525 [opj(STC_H, 'stc.h')])
526
527 # copy a project specific py module to the main package dir
528 copy_file(opj(location, 'stc.py'), PKGDIR, update=1, verbose=0)
529
530 # add some include dirs to the standard set
531 stc_includes = includes[:]
532 stc_includes.append('%s/scintilla/include' % STCLOC)
533 stc_includes.append('%s/scintilla/src' % STCLOC)
534 stc_includes.append(STCINC)
535
536 # and some macro definitions
537 stc_defines = defines[:]
538 stc_defines.append( ('__WX__', None) )
539 stc_defines.append( ('SCI_LEXER', None) )
540
541
542 ext = Extension('stc_c',
543 ['%s/scintilla/src/AutoComplete.cxx' % STCLOC,
544 '%s/scintilla/src/CallTip.cxx' % STCLOC,
545 '%s/scintilla/src/CellBuffer.cxx' % STCLOC,
546 '%s/scintilla/src/ContractionState.cxx' % STCLOC,
547 '%s/scintilla/src/Document.cxx' % STCLOC,
548 '%s/scintilla/src/DocumentAccessor.cxx' % STCLOC,
549 '%s/scintilla/src/Editor.cxx' % STCLOC,
550 '%s/scintilla/src/Indicator.cxx' % STCLOC,
551 '%s/scintilla/src/KeyMap.cxx' % STCLOC,
552 '%s/scintilla/src/KeyWords.cxx' % STCLOC,
553 '%s/scintilla/src/LineMarker.cxx' % STCLOC,
554 '%s/scintilla/src/PropSet.cxx' % STCLOC,
555 '%s/scintilla/src/RESearch.cxx' % STCLOC,
556 '%s/scintilla/src/ScintillaBase.cxx' % STCLOC,
557 '%s/scintilla/src/Style.cxx' % STCLOC,
558 '%s/scintilla/src/UniConversion.cxx' % STCLOC,
559 '%s/scintilla/src/ViewStyle.cxx' % STCLOC,
560 '%s/scintilla/src/WindowAccessor.cxx' % STCLOC,
561
562 '%s/scintilla/src/LexAda.cxx' % STCLOC,
563 '%s/scintilla/src/LexAVE.cxx' % STCLOC,
564 '%s/scintilla/src/LexConf.cxx' % STCLOC,
565 '%s/scintilla/src/LexCPP.cxx' % STCLOC,
566 '%s/scintilla/src/LexEiffel.cxx' % STCLOC,
567 '%s/scintilla/src/LexHTML.cxx' % STCLOC,
568 '%s/scintilla/src/LexLisp.cxx' % STCLOC,
569 '%s/scintilla/src/LexLua.cxx' % STCLOC,
570 '%s/scintilla/src/LexOthers.cxx' % STCLOC,
571 '%s/scintilla/src/LexPascal.cxx' % STCLOC,
572 '%s/scintilla/src/LexPerl.cxx' % STCLOC,
573 '%s/scintilla/src/LexPython.cxx' % STCLOC,
574 '%s/scintilla/src/LexRuby.cxx' % STCLOC,
575 '%s/scintilla/src/LexSQL.cxx' % STCLOC,
576 '%s/scintilla/src/LexVB.cxx' % STCLOC,
577
578 '%s/PlatWX.cpp' % STCLOC,
579 '%s/ScintillaWX.cpp' % STCLOC,
580 '%s/stc.cpp' % STCLOC,
581 ] + swig_sources,
582
583 include_dirs = stc_includes,
584 define_macros = stc_defines,
585
586 library_dirs = libdirs,
587 libraries = libs,
588
589 extra_compile_args = cflags,
590 extra_link_args = lflags,
591 )
592
593 wxpExtensions.append(ext)
594
595
596
597 #----------------------------------------------------------------------
598 # Define the IEWIN extension module (experimental)
599 #----------------------------------------------------------------------
600
601 if not GL_ONLY and BUILD_IEWIN:
602 msg('Preparing IEWIN...')
603 location = 'contrib/iewin'
604
605 swig_files = ['iewin.i', ]
606
607 swig_sources = run_swig(swig_files, location, '', PKGDIR,
608 USE_SWIG, swig_force, swig_args)
609
610
611 ext = Extension('iewinc', ['%s/IEHtmlWin.cpp' % location,
612 ] + swig_sources,
613
614 include_dirs = includes,
615 define_macros = defines,
616
617 library_dirs = libdirs,
618 libraries = libs,
619
620 extra_compile_args = cflags,
621 extra_link_args = lflags,
622 )
623
624 wxpExtensions.append(ext)
625
626
627 #----------------------------------------------------------------------
628 # Define the XRC extension module
629 #----------------------------------------------------------------------
630
631 if not GL_ONLY and BUILD_XRC:
632 msg('Preparing XRC...')
633 location = 'contrib/xrc'
634 XMLLOC = opj(location, 'contrib/src/xrc')
635 XMLINC = opj(location, 'contrib/include')
636
637 swig_files = ['xrc.i']
638
639 swig_sources = run_swig(swig_files, location, '', PKGDIR,
640 USE_SWIG, swig_force, swig_args)
641
642 xmlres_includes = includes[:]
643 xmlres_includes.append('%s/expat/xmlparse' % XMLLOC)
644 xmlres_includes.append('%s/expat/xmltok' % XMLLOC)
645 xmlres_includes.append(XMLINC)
646
647
648 # make sure local copy of contrib files are up to date
649 if IN_CVS_TREE:
650 contrib_copy_tree(opj(CTRB_INC, 'xrc'), opj(XMLINC, 'wx/xrc'))
651 contrib_copy_tree(opj(CTRB_SRC, 'xrc'), XMLLOC)
652
653 ext = Extension('xrcc', ['%s/expat/xmlparse/xmlparse.c' % XMLLOC,
654 '%s/expat/xmltok/xmlrole.c' % XMLLOC,
655 '%s/expat/xmltok/xmltok.c' % XMLLOC,
656
657 '%s/xh_bmp.cpp' % XMLLOC,
658 '%s/xh_bmpbt.cpp' % XMLLOC,
659 '%s/xh_bttn.cpp' % XMLLOC,
660 '%s/xh_cald.cpp' % XMLLOC,
661 '%s/xh_chckb.cpp' % XMLLOC,
662
663 '%s/xh_chckl.cpp' % XMLLOC,
664 '%s/xh_choic.cpp' % XMLLOC,
665 '%s/xh_combo.cpp' % XMLLOC,
666 '%s/xh_dlg.cpp' % XMLLOC,
667 '%s/xh_frame.cpp' % XMLLOC,
668
669 '%s/xh_gauge.cpp' % XMLLOC,
670 '%s/xh_html.cpp' % XMLLOC,
671 '%s/xh_listb.cpp' % XMLLOC,
672 '%s/xh_listc.cpp' % XMLLOC,
673 '%s/xh_menu.cpp' % XMLLOC,
674
675 '%s/xh_notbk.cpp' % XMLLOC,
676 '%s/xh_panel.cpp' % XMLLOC,
677 '%s/xh_radbt.cpp' % XMLLOC,
678 '%s/xh_radbx.cpp' % XMLLOC,
679 '%s/xh_scrol.cpp' % XMLLOC,
680
681 '%s/xh_sizer.cpp' % XMLLOC,
682 '%s/xh_slidr.cpp' % XMLLOC,
683 '%s/xh_spin.cpp' % XMLLOC,
684 '%s/xh_stbmp.cpp' % XMLLOC,
685 '%s/xh_stbox.cpp' % XMLLOC,
686
687 '%s/xh_stlin.cpp' % XMLLOC,
688 '%s/xh_sttxt.cpp' % XMLLOC,
689 '%s/xh_text.cpp' % XMLLOC,
690 '%s/xh_toolb.cpp' % XMLLOC,
691 '%s/xh_tree.cpp' % XMLLOC,
692
693 '%s/xh_unkwn.cpp' % XMLLOC,
694 '%s/xml.cpp' % XMLLOC,
695 '%s/xmlbin.cpp' % XMLLOC,
696 '%s/xmlbinz.cpp' % XMLLOC,
697 '%s/xmlexpat.cpp' % XMLLOC,
698
699 '%s/xmlres.cpp' % XMLLOC,
700 '%s/xmlrsall.cpp' % XMLLOC,
701 '%s/xmlwrite.cpp' % XMLLOC,
702
703 ] + swig_sources,
704
705 include_dirs = xmlres_includes,
706 define_macros = defines,
707
708 library_dirs = libdirs,
709 libraries = libs,
710
711 extra_compile_args = cflags,
712 extra_link_args = lflags,
713 )
714
715 wxpExtensions.append(ext)
716
717
718
719
720 #----------------------------------------------------------------------
721 # Do the Setup/Build/Install/Whatever
722 #----------------------------------------------------------------------
723
724 if __name__ == "__main__":
725 if not GL_ONLY:
726 setup(name = PKGDIR,
727 version = VERSION,
728 description = DESCRIPTION,
729 long_description = LONG_DESCRIPTION,
730 author = AUTHOR,
731 author_email = AUTHOR_EMAIL,
732 url = URL,
733 licence = LICENCE,
734
735 packages = [PKGDIR,
736 PKGDIR+'.lib',
737 PKGDIR+'.lib.editor',
738 PKGDIR+'.lib.mixins'
739 ],
740
741 ext_package = PKGDIR,
742 ext_modules = wxpExtensions,
743 )
744
745 else:
746
747 setup(name = "wxPython-gl",
748 version = VERSION,
749 description = "wxGLCanvas class for wxPython",
750 author = AUTHOR,
751 author_email = AUTHOR_EMAIL,
752 url = URL,
753 licence = LICENCE,
754
755 py_modules = [ "wxPython.glcanvas" ],
756
757 ext_package = PKGDIR,
758 ext_modules = wxpExtensions,
759 )
760
761
762
763
764 #----------------------------------------------------------------------
765 #----------------------------------------------------------------------