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