]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/setup.py
2 #----------------------------------------------------------------------
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
10 from my_distutils
import run_swig
, contrib_copy_tree
12 #----------------------------------------------------------------------
13 # flags and values that affect this script
14 #----------------------------------------------------------------------
17 DESCRIPTION
= "Cross platform GUI toolkit for Python"
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
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
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
42 USE_SWIG
= 0 # Should we actually execute SWIG, or just use the
43 # files already in the distribution?
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
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.
54 # Some MSW build settings
56 FINAL
= 1 # Mirrors use of same flag in wx makefiles,
57 # (0 or 1 only) should probably find a way to
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.)
67 WXDLLVER
= '23_2' # Version part of DLL name
70 #----------------------------------------------------------------------
73 if __name__
== "__main__":
77 path
= apply(os
.path
.join
, args
)
78 return os
.path
.normpath(path
)
80 #----------------------------------------------------------------------
82 #----------------------------------------------------------------------
87 force
= '--force' in sys
.argv
or '-f' in sys
.argv
88 debug
= '--debug' in sys
.argv
or '-g' in sys
.argv
90 bcpp_compiling
= '-c' in sys
.argv
and 'my_bcpp' in sys
.argv
# Bad heuristic
93 msg("Compiling wxPython by Borland C/C++ Compiler")
95 WXBCPPLIBVER
= string
.replace(WXDLLVER
,"_","")
96 # Version part of BCPP build LIBRARY name
97 WXDLLVER
="" # no dll ver path avaible
100 #----------------------------------------------------------------------
101 # Check for build flags on the command line
102 #----------------------------------------------------------------------
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
111 vars()[flag
] = eval(sys
.argv
[x
][pos
:])
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
119 vars()[option
] = sys
.argv
[x
][pos
:]
122 sys
.argv
= filter(None, sys
.argv
)
131 #----------------------------------------------------------------------
132 # Setup some platform specific stuff
133 #----------------------------------------------------------------------
136 # Set compile flags and such for MSVC. These values are derived
137 # from the wxWindows makefiles for MSVC, others will probably
139 WXDIR
= os
.environ
['WXWIN']
151 opj(WXDIR
, 'include'),
154 defines
= [ ('WIN32', None), # Some of these are no longer
155 ('__WIN32__', None), # necessary. Anybody know which?
157 ('__WINDOWS__', None),
158 ('WINVER', '0x0400'),
165 ('SWIG_GLOBAL', None),
166 ('HAVE_CONFIG_H', None),
167 ('WXP_USE_THREAD', '1'),
170 if bcpp_compiling
: # overwrite it
173 ('WINVER', '0x0400'),
178 ('SWIG_GLOBAL', None),
179 ('HAVE_CONFIG_H', None),
180 ('WXP_USE_THREAD', '1'),
182 ('WXUSE_DEFINE','1'),
187 if not FINAL
or HYBRID
:
188 defines
.append( ('__WXDEBUG__', None) )
190 libdirs
= [opj(WXDIR
, 'lib'), 'build\\ilib']
193 wxdll
= 'wx' + WXDLLVER
195 wxdll
= 'wx' + WXDLLVER
+ 'h'
197 wxdll
= 'wx' + WXDLLVER
+ 'd'
202 libs
= ['wx'+WXBCPPLIBVER
]
204 libs
= libs
+ ['kernel32', 'user32', 'gdi32', 'comdlg32',
205 'winspool', 'winmm', 'shell32', 'oldnames', 'comctl32',
206 'ctl3d32', 'odbc32', 'ole32', 'oleaut32', 'uuid', 'rpcrt4',
207 'advapi32', 'wsock32']
210 cflags
= [] #['/GX-'] # workaround for internal compiler error in MSVC on some machines
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')
222 if not FINAL
and HYBRID
and not bcpp_compiling
:
223 cflags
= cflags
+ ['/Od', '/Z7']
224 lflags
= ['/DEBUG', ]
226 elif bcpp_compiling
and not FINAL
:
227 cflags
= cflags
+ ['/Od', '/v', '/y']
228 lflags
= lflags
+ ['/v', ] ## '/PDB:NONE']
232 elif os
.name
== 'posix':
233 # Set flags for Unix type platforms
235 WXDIR
= '..' # assumes IN_CVS_TREE
236 WXPLAT
= '__WXGTK__' # and assumes GTK...
237 GENDIR
= 'gtk' # Need to allow for Motif eventually too
240 defines
= [('SWIG_GLOBAL', None),
241 ('HAVE_CONFIG_H', None),
242 ('WXP_USE_THREAD', '1'),
247 cflags
= os
.popen(WX_CONFIG
+ ' --cflags', 'r').read()[:-1] + ' ' + \
248 os
.popen('gtk-config --cflags', 'r').read()[:-1]
249 cflags
= string
.split(cflags
)
251 lflags
= os
.popen(WX_CONFIG
+ ' --libs', 'r').read()[:-1]
252 lflags
= string
.split(lflags
)
256 raise 'Sorry Charlie...'
259 #----------------------------------------------------------------------
260 # Check if the version file needs updated
261 #----------------------------------------------------------------------
263 if IN_CVS_TREE
and newer('setup.py', 'src/__version__.py'):
264 open('src/__version__.py', 'w').write("ver = '%s'\n" % VERSION
)
268 #----------------------------------------------------------------------
270 #----------------------------------------------------------------------
273 swig_args
= ['-c++', '-shadow', '-python', '-keyword',
276 #'-docstring', '-Sbefore',
277 '-I./src', '-D'+WXPLAT
]
278 swig_deps
= ['src/my_typemaps.i']
281 #----------------------------------------------------------------------
282 # Define the CORE extension module
283 #----------------------------------------------------------------------
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',
295 swig_sources
= run_swig(swig_files
, 'src', GENDIR
, PKGDIR
,
296 USE_SWIG
, swig_force
, swig_args
, swig_deps
)
298 copy_file('src/__init__.py', PKGDIR
, update
=1, verbose
=0)
299 copy_file('src/__version__.py', PKGDIR
, update
=1, verbose
=0)
302 if IN_CVS_TREE
: # update the licence files
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)
309 rc_file
= ['src/wxc.rc']
314 ext
= Extension('wxc', ['src/helpers.cpp',
316 ] + rc_file
+ swig_sources
,
318 include_dirs
= includes
,
319 define_macros
= defines
,
321 library_dirs
= libdirs
,
324 extra_compile_args
= cflags
,
325 extra_link_args
= lflags
,
327 wxpExtensions
.append(ext
)
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
,
338 extra_compile_args
= cflags
,
339 extra_link_args
= lflags
,
341 wxpExtensions
.append(ext
)
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
,
352 extra_compile_args
= cflags
,
353 extra_link_args
= lflags
,
355 wxpExtensions
.append(ext
)
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
,
366 extra_compile_args
= cflags
,
367 extra_link_args
= lflags
,
369 wxpExtensions
.append(ext
)
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
,
380 extra_compile_args
= cflags
,
381 extra_link_args
= lflags
,
383 wxpExtensions
.append(ext
)
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
,
394 extra_compile_args
= cflags
,
395 extra_link_args
= lflags
,
397 wxpExtensions
.append(ext
)
400 #----------------------------------------------------------------------
401 # Define the GLCanvas extension module
402 #----------------------------------------------------------------------
404 CTRB_SRC
= opj(WXDIR
, 'contrib/src')
405 CTRB_INC
= opj(WXDIR
, 'contrib/include/wx')
407 if BUILD_GLCANVAS
or GL_ONLY
:
408 msg('Preparing GLCANVAS...')
409 location
= 'contrib/glcanvas'
410 swig_files
= ['glcanvas.i']
413 swig_sources
= run_swig(swig_files
, location
, GENDIR
, PKGDIR
,
414 USE_SWIG
, swig_force
, swig_args
)
417 if os
.name
== 'posix':
418 if '-D__WXDEBUG__' in cflags
:
419 gl_libs
= ['wx_gtkd_gl', 'GL', 'GLU']
421 gl_libs
= ['wx_gtk_gl', 'GL', 'GLU']
423 other_sources
= [opj(location
, 'msw/myglcanvas.cpp')]
424 gl_libs
= ['opengl32', 'glu32']
427 ext
= Extension('glcanvasc',
428 swig_sources
+ other_sources
,
430 include_dirs
= includes
,
431 define_macros
= defines
,
433 library_dirs
= libdirs
,
434 libraries
= libs
+ gl_libs
,
436 extra_compile_args
= cflags
,
437 extra_link_args
= lflags
,
440 wxpExtensions
.append(ext
)
443 #----------------------------------------------------------------------
444 # Define the OGL extension module
445 #----------------------------------------------------------------------
447 if not GL_ONLY
and BUILD_OGL
:
448 msg('Preparing OGL...')
449 location
= 'contrib/ogl'
450 OGLLOC
= opj(location
, 'contrib/src/ogl')
451 OGLINC
= opj(location
, 'contrib/include')
453 swig_files
= ['ogl.i', 'oglbasic.i', 'oglshapes.i', 'oglshapes2.i',
456 swig_sources
= run_swig(swig_files
, location
, '', PKGDIR
,
457 USE_SWIG
, swig_force
, swig_args
)
460 # make sure local copy of contrib files are up to date
461 contrib_copy_tree(opj(CTRB_INC
, 'ogl'), opj(OGLINC
, 'wx/ogl'))
462 contrib_copy_tree(opj(CTRB_SRC
, 'ogl'), OGLLOC
)
464 ext
= Extension('oglc', ['%s/basic.cpp' % OGLLOC
,
465 '%s/bmpshape.cpp' % OGLLOC
,
466 '%s/composit.cpp' % OGLLOC
,
467 '%s/divided.cpp' % OGLLOC
,
468 '%s/lines.cpp' % OGLLOC
,
469 '%s/misc.cpp' % OGLLOC
,
470 '%s/basic2.cpp' % OGLLOC
,
471 '%s/canvas.cpp' % OGLLOC
,
472 '%s/constrnt.cpp' % OGLLOC
,
473 '%s/drawn.cpp' % OGLLOC
,
474 '%s/mfutils.cpp' % OGLLOC
,
475 '%s/ogldiag.cpp' % OGLLOC
,
478 include_dirs
= [OGLINC
] + includes
,
479 define_macros
= defines
,
481 library_dirs
= libdirs
,
484 extra_compile_args
= cflags
,
485 extra_link_args
= lflags
,
488 wxpExtensions
.append(ext
)
492 #----------------------------------------------------------------------
493 # Define the STC extension module
494 #----------------------------------------------------------------------
496 if not GL_ONLY
and BUILD_STC
:
497 msg('Preparing STC...')
498 location
= 'contrib/stc'
499 STCLOC
= opj(location
, 'contrib/src/stc')
500 STCINC
= opj(location
, 'contrib/include')
501 STC_H
= opj(location
, 'contrib/include/wx/stc')
504 # Check if gen_iface needs to be run for the wxSTC sources
505 if (newer(opj(CTRB_SRC
, 'stc/stc.h.in'), opj(CTRB_INC
, 'stc/stc.h' )) or
506 newer(opj(CTRB_SRC
, 'stc/stc.cpp.in'), opj(CTRB_SRC
, 'stc/stc.cpp')) or
507 newer(opj(CTRB_SRC
, 'stc/gen_iface.py'), opj(CTRB_SRC
, 'stc/stc.cpp'))):
509 msg('Running gen_iface.py, regenerating stc.h and stc.cpp...')
511 os
.chdir(opj(CTRB_SRC
, 'stc'))
517 # make sure local copy of contrib files are up to date
518 contrib_copy_tree(opj(CTRB_INC
, 'stc'), opj(STCINC
, 'wx/stc'))
519 contrib_copy_tree(opj(CTRB_SRC
, 'stc'), STCLOC
)
523 swig_files
= ['stc_.i']
524 swig_sources
= run_swig(swig_files
, location
, '', PKGDIR
,
525 USE_SWIG
, swig_force
,
526 swig_args
+ ['-I'+STC_H
, '-I'+location
],
527 [opj(STC_H
, 'stc.h')])
529 # copy a project specific py module to the main package dir
530 copy_file(opj(location
, 'stc.py'), PKGDIR
, update
=1, verbose
=0)
532 # add some include dirs to the standard set
533 stc_includes
= includes
[:]
534 stc_includes
.append('%s/scintilla/include' % STCLOC
)
535 stc_includes
.append('%s/scintilla/src' % STCLOC
)
536 stc_includes
.append(STCINC
)
538 # and some macro definitions
539 stc_defines
= defines
[:]
540 stc_defines
.append( ('__WX__', None) )
541 stc_defines
.append( ('SCI_LEXER', None) )
544 ext
= Extension('stc_c',
545 ['%s/scintilla/src/AutoComplete.cxx' % STCLOC
,
546 '%s/scintilla/src/CallTip.cxx' % STCLOC
,
547 '%s/scintilla/src/CellBuffer.cxx' % STCLOC
,
548 '%s/scintilla/src/ContractionState.cxx' % STCLOC
,
549 '%s/scintilla/src/Document.cxx' % STCLOC
,
550 '%s/scintilla/src/DocumentAccessor.cxx' % STCLOC
,
551 '%s/scintilla/src/Editor.cxx' % STCLOC
,
552 '%s/scintilla/src/Indicator.cxx' % STCLOC
,
553 '%s/scintilla/src/KeyMap.cxx' % STCLOC
,
554 '%s/scintilla/src/KeyWords.cxx' % STCLOC
,
555 '%s/scintilla/src/LineMarker.cxx' % STCLOC
,
556 '%s/scintilla/src/PropSet.cxx' % STCLOC
,
557 '%s/scintilla/src/RESearch.cxx' % STCLOC
,
558 '%s/scintilla/src/ScintillaBase.cxx' % STCLOC
,
559 '%s/scintilla/src/Style.cxx' % STCLOC
,
560 '%s/scintilla/src/UniConversion.cxx' % STCLOC
,
561 '%s/scintilla/src/ViewStyle.cxx' % STCLOC
,
562 '%s/scintilla/src/WindowAccessor.cxx' % STCLOC
,
564 '%s/scintilla/src/LexAda.cxx' % STCLOC
,
565 '%s/scintilla/src/LexAVE.cxx' % STCLOC
,
566 '%s/scintilla/src/LexConf.cxx' % STCLOC
,
567 '%s/scintilla/src/LexCPP.cxx' % STCLOC
,
568 '%s/scintilla/src/LexEiffel.cxx' % STCLOC
,
569 '%s/scintilla/src/LexHTML.cxx' % STCLOC
,
570 '%s/scintilla/src/LexLisp.cxx' % STCLOC
,
571 '%s/scintilla/src/LexLua.cxx' % STCLOC
,
572 '%s/scintilla/src/LexOthers.cxx' % STCLOC
,
573 '%s/scintilla/src/LexPascal.cxx' % STCLOC
,
574 '%s/scintilla/src/LexPerl.cxx' % STCLOC
,
575 '%s/scintilla/src/LexPython.cxx' % STCLOC
,
576 '%s/scintilla/src/LexRuby.cxx' % STCLOC
,
577 '%s/scintilla/src/LexSQL.cxx' % STCLOC
,
578 '%s/scintilla/src/LexVB.cxx' % STCLOC
,
580 '%s/PlatWX.cpp' % STCLOC
,
581 '%s/ScintillaWX.cpp' % STCLOC
,
582 '%s/stc.cpp' % STCLOC
,
585 include_dirs
= stc_includes
,
586 define_macros
= stc_defines
,
588 library_dirs
= libdirs
,
591 extra_compile_args
= cflags
,
592 extra_link_args
= lflags
,
595 wxpExtensions
.append(ext
)
599 #----------------------------------------------------------------------
600 # Define the IEWIN extension module (experimental)
601 #----------------------------------------------------------------------
603 if not GL_ONLY
and BUILD_IEWIN
:
604 msg('Preparing IEWIN...')
605 location
= 'contrib/iewin'
607 swig_files
= ['iewin.i', ]
609 swig_sources
= run_swig(swig_files
, location
, '', PKGDIR
,
610 USE_SWIG
, swig_force
, swig_args
)
613 ext
= Extension('iewinc', ['%s/IEHtmlWin.cpp' % location
,
616 include_dirs
= includes
,
617 define_macros
= defines
,
619 library_dirs
= libdirs
,
622 extra_compile_args
= cflags
,
623 extra_link_args
= lflags
,
626 wxpExtensions
.append(ext
)
629 #----------------------------------------------------------------------
630 # Define the XRC extension module
631 #----------------------------------------------------------------------
633 if not GL_ONLY
and BUILD_XRC
:
634 msg('Preparing XRC...')
635 location
= 'contrib/xrc'
636 XMLLOC
= opj(location
, 'contrib/src/xrc')
637 XMLINC
= opj(location
, 'contrib/include')
639 swig_files
= ['xrc.i']
641 swig_sources
= run_swig(swig_files
, location
, '', PKGDIR
,
642 USE_SWIG
, swig_force
, swig_args
)
644 xmlres_includes
= includes
[:]
645 xmlres_includes
.append('%s/expat/xmlparse' % XMLLOC
)
646 xmlres_includes
.append('%s/expat/xmltok' % XMLLOC
)
647 xmlres_includes
.append(XMLINC
)
650 # make sure local copy of contrib files are up to date
652 contrib_copy_tree(opj(CTRB_INC
, 'xrc'), opj(XMLINC
, 'wx/xrc'))
653 contrib_copy_tree(opj(CTRB_SRC
, 'xrc'), XMLLOC
)
655 ext
= Extension('xrcc', ['%s/expat/xmlparse/xmlparse.c' % XMLLOC
,
656 '%s/expat/xmltok/xmlrole.c' % XMLLOC
,
657 '%s/expat/xmltok/xmltok.c' % XMLLOC
,
659 '%s/xh_bmp.cpp' % XMLLOC
,
660 '%s/xh_bmpbt.cpp' % XMLLOC
,
661 '%s/xh_bttn.cpp' % XMLLOC
,
662 '%s/xh_cald.cpp' % XMLLOC
,
663 '%s/xh_chckb.cpp' % XMLLOC
,
665 '%s/xh_chckl.cpp' % XMLLOC
,
666 '%s/xh_choic.cpp' % XMLLOC
,
667 '%s/xh_combo.cpp' % XMLLOC
,
668 '%s/xh_dlg.cpp' % XMLLOC
,
669 '%s/xh_frame.cpp' % XMLLOC
,
671 '%s/xh_gauge.cpp' % XMLLOC
,
672 '%s/xh_html.cpp' % XMLLOC
,
673 '%s/xh_listb.cpp' % XMLLOC
,
674 '%s/xh_listc.cpp' % XMLLOC
,
675 '%s/xh_menu.cpp' % XMLLOC
,
677 '%s/xh_notbk.cpp' % XMLLOC
,
678 '%s/xh_panel.cpp' % XMLLOC
,
679 '%s/xh_radbt.cpp' % XMLLOC
,
680 '%s/xh_radbx.cpp' % XMLLOC
,
681 '%s/xh_scrol.cpp' % XMLLOC
,
683 '%s/xh_sizer.cpp' % XMLLOC
,
684 '%s/xh_slidr.cpp' % XMLLOC
,
685 '%s/xh_spin.cpp' % XMLLOC
,
686 '%s/xh_stbmp.cpp' % XMLLOC
,
687 '%s/xh_stbox.cpp' % XMLLOC
,
689 '%s/xh_stlin.cpp' % XMLLOC
,
690 '%s/xh_sttxt.cpp' % XMLLOC
,
691 '%s/xh_text.cpp' % XMLLOC
,
692 '%s/xh_toolb.cpp' % XMLLOC
,
693 '%s/xh_tree.cpp' % XMLLOC
,
695 '%s/xh_unkwn.cpp' % XMLLOC
,
696 '%s/xml.cpp' % XMLLOC
,
697 '%s/xmlbin.cpp' % XMLLOC
,
698 '%s/xmlbinz.cpp' % XMLLOC
,
699 '%s/xmlexpat.cpp' % XMLLOC
,
701 '%s/xmlres.cpp' % XMLLOC
,
702 '%s/xmlrsall.cpp' % XMLLOC
,
703 '%s/xmlwrite.cpp' % XMLLOC
,
707 include_dirs
= xmlres_includes
,
708 define_macros
= defines
,
710 library_dirs
= libdirs
,
713 extra_compile_args
= cflags
,
714 extra_link_args
= lflags
,
717 wxpExtensions
.append(ext
)
722 #----------------------------------------------------------------------
723 # Do the Setup/Build/Install/Whatever
724 #----------------------------------------------------------------------
726 if __name__
== "__main__":
730 description
= DESCRIPTION
,
731 long_description
= LONG_DESCRIPTION
,
733 author_email
= AUTHOR_EMAIL
,
739 PKGDIR
+'.lib.editor',
743 ext_package
= PKGDIR
,
744 ext_modules
= wxpExtensions
,
749 setup(name
= "wxPython-gl",
751 description
= "wxGLCanvas class for wxPython",
753 author_email
= AUTHOR_EMAIL
,
757 py_modules
= [ "wxPython.glcanvas" ],
759 ext_package
= PKGDIR
,
760 ext_modules
= wxpExtensions
,
766 #----------------------------------------------------------------------
767 #----------------------------------------------------------------------