]>
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_1' # Version part of DLL name
70 #----------------------------------------------------------------------
72 #----------------------------------------------------------------------
77 force
= '--force' in sys
.argv
or '-f' in sys
.argv
78 debug
= '--debug' in sys
.argv
or '-g' in sys
.argv
80 bcpp_compiling
= '-c' in sys
.argv
and 'my_bcpp' in sys
.argv
# Bad heuristic
83 print "Compiling wxPython by Borland C/C++ Compiler"
85 WXBCPPLIBVER
= string
.replace(WXDLLVER
,"_","")
86 # Version part of BCPP build LIBRARY name
87 WXDLLVER
="" # no dll ver path avaible
90 #----------------------------------------------------------------------
91 # Check for build flags on the command line
92 #----------------------------------------------------------------------
94 for flag
in ['BUILD_GLCANVAS', 'BUILD_OGL', 'BUILD_STC', 'BUILD_XRC',
95 'CORE_ONLY', 'USE_SWIG', 'IN_CVS_TREE',
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
101 vars()[flag
] = eval(sys
.argv
[x
][pos
:])
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
109 vars()[option
] = sys
.argv
[x
][pos
:]
112 sys
.argv
= filter(None, sys
.argv
)
121 #----------------------------------------------------------------------
122 # Setup some platform specific stuff
123 #----------------------------------------------------------------------
126 # Set compile flags and such for MSVC. These values are derived
127 # from the wxWindows makefiles for MSVC, others will probably
129 WXDIR
= os
.environ
['WXWIN']
141 os
.path
.join(WXDIR
, 'include'),
144 defines
= [ ('WIN32', None), # Some of these are no longer
145 ('__WIN32__', None), # necessary. Anybody know which?
147 ('__WINDOWS__', None),
148 ('WINVER', '0x0400'),
155 ('SWIG_GLOBAL', None),
156 ('HAVE_CONFIG_H', None),
157 ('WXP_USE_THREAD', '1'),
160 if bcpp_compiling
: # overwrite it
163 ('WINVER', '0x0400'),
168 ('SWIG_GLOBAL', None),
169 ('HAVE_CONFIG_H', None),
170 ('WXP_USE_THREAD', '1'),
172 ('WXUSE_DEFINE','1'),
177 if not FINAL
or HYBRID
:
178 defines
.append( ('__WXDEBUG__', None) )
180 libdirs
= [os
.path
.join(WXDIR
, 'lib'), 'build\\ilib']
183 wxdll
= 'wx' + WXDLLVER
185 wxdll
= 'wx' + WXDLLVER
+ 'h'
187 wxdll
= 'wx' + WXDLLVER
+ 'd'
192 libs
= ['wx'+WXBCPPLIBVER
]
194 libs
= libs
+ ['kernel32', 'user32', 'gdi32', 'comdlg32',
195 'winspool', 'winmm', 'shell32', 'oldnames', 'comctl32',
196 'ctl3d32', 'odbc32', 'ole32', 'oleaut32', 'uuid', 'rpcrt4',
197 'advapi32', 'wsock32']
200 cflags
= [] #['/GX-'] # workaround for internal compiler error in MSVC 5
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'
212 if not FINAL
and HYBRID
and not bcpp_compiling
:
213 cflags
= cflags
+ ['/Od', '/Z7']
214 lflags
= ['/DEBUG', ]
216 elif bcpp_compiling
and not FINAL
:
217 cflags
= cflags
+ ['/Od', '/v', '/y']
218 lflags
= lflags
+ ['/v', ] ## '/PDB:NONE']
222 elif os
.name
== 'posix':
223 # Set flags for Unix type platforms
225 WXDIR
= '..' # assumes IN_CVS_TREE
226 WXPLAT
= '__WXGTK__' # and assumes GTK...
227 GENDIR
= 'gtk' # Need to allow for Motif eventually too
230 defines
= [('SWIG_GLOBAL', None),
231 ('HAVE_CONFIG_H', None),
232 ('WXP_USE_THREAD', '1'),
237 cflags
= os
.popen(WX_CONFIG
+ ' --cflags', 'r').read()[:-1] + ' ' + \
238 os
.popen('gtk-config --cflags', 'r').read()[:-1]
239 cflags
= string
.split(cflags
)
241 lflags
= os
.popen(WX_CONFIG
+ ' --libs', 'r').read()[:-1]
242 lflags
= string
.split(lflags
)
246 raise 'Sorry Charlie...'
249 #----------------------------------------------------------------------
250 # Check if the version file needs updated
251 #----------------------------------------------------------------------
253 if IN_CVS_TREE
and newer('setup.py', 'src/__version__.py'):
254 open('src/__version__.py', 'w').write("ver = '%s'\n" % VERSION
)
258 #----------------------------------------------------------------------
260 #----------------------------------------------------------------------
263 swig_args
= ['-c++', '-shadow', '-python', '-keyword', '-dnone', #'-dascii',
264 '-I./src', '-D'+WXPLAT
]
265 swig_deps
= ['src/my_typemaps.i']
268 #----------------------------------------------------------------------
269 # Define the CORE extension module
270 #----------------------------------------------------------------------
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',
282 swig_sources
= run_swig(swig_files
, 'src', GENDIR
, PKGDIR
,
283 USE_SWIG
, swig_force
, swig_args
, swig_deps
)
285 copy_file('src/__init__.py', PKGDIR
, update
=1, verbose
=0)
286 copy_file('src/__version__.py', PKGDIR
, update
=1, verbose
=0)
289 if IN_CVS_TREE
: # update the licence files
291 for file in ['preamble.txt', 'licence.txt', 'licendoc.txt', 'lgpl.txt']:
292 copy_file(WXDIR
+'/docs/'+file, 'licence/'+file, update
=1, verbose
=0)
296 rc_file
= ['src/wxc.rc']
301 ext
= Extension('wxc', ['src/helpers.cpp',
303 ] + rc_file
+ swig_sources
,
305 include_dirs
= includes
,
306 define_macros
= defines
,
308 library_dirs
= libdirs
,
311 extra_compile_args
= cflags
,
312 extra_link_args
= lflags
,
314 wxpExtensions
.append(ext
)
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
,
325 extra_compile_args
= cflags
,
326 extra_link_args
= lflags
,
328 wxpExtensions
.append(ext
)
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
,
339 extra_compile_args
= cflags
,
340 extra_link_args
= lflags
,
342 wxpExtensions
.append(ext
)
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
,
353 extra_compile_args
= cflags
,
354 extra_link_args
= lflags
,
356 wxpExtensions
.append(ext
)
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
,
367 extra_compile_args
= cflags
,
368 extra_link_args
= lflags
,
370 wxpExtensions
.append(ext
)
373 #----------------------------------------------------------------------
374 # Define the GLCanvas extension module
375 #----------------------------------------------------------------------
377 if BUILD_GLCANVAS
or GL_ONLY
:
378 print 'Preparing GLCANVAS...'
379 location
= 'contrib/glcanvas'
380 swig_files
= ['glcanvas.i']
383 swig_sources
= run_swig(swig_files
, location
, GENDIR
, PKGDIR
,
384 USE_SWIG
, swig_force
, swig_args
)
387 if os
.name
== 'posix':
388 if '-D__WXDEBUG__' in cflags
:
389 gl_libs
= ['wx_gtkd_gl', 'GL', 'GLU']
391 gl_libs
= ['wx_gtk_gl', 'GL', 'GLU']
393 other_sources
= [location
+ '/msw/myglcanvas.cpp']
394 gl_libs
= ['opengl32', 'glu32']
397 ext
= Extension('glcanvasc',
398 swig_sources
+ other_sources
,
400 include_dirs
= includes
,
401 define_macros
= defines
,
403 library_dirs
= libdirs
,
404 libraries
= libs
+ gl_libs
,
406 extra_compile_args
= cflags
,
407 extra_link_args
= lflags
,
410 wxpExtensions
.append(ext
)
413 #----------------------------------------------------------------------
414 # Define the OGL extension module
415 #----------------------------------------------------------------------
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'
423 swig_files
= ['ogl.i', 'oglbasic.i', 'oglshapes.i', 'oglshapes2.i',
426 swig_sources
= run_swig(swig_files
, location
, '', PKGDIR
,
427 USE_SWIG
, swig_force
, swig_args
)
429 # make sure local copy of contrib files are up to date
431 contrib_copy_tree(WXDIR
+ '/contrib/include/wx/ogl', OGLINC
+'/wx/ogl')
432 contrib_copy_tree(WXDIR
+ '/contrib/src/ogl', OGLLOC
)
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
,
448 include_dirs
= [OGLINC
] + includes
,
449 define_macros
= defines
,
451 library_dirs
= libdirs
,
454 extra_compile_args
= cflags
,
455 extra_link_args
= lflags
,
458 wxpExtensions
.append(ext
)
462 #----------------------------------------------------------------------
463 # Define the STC extension module
464 #----------------------------------------------------------------------
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'
473 # make sure local copy of contrib files are up to date
475 contrib_copy_tree(WXDIR
+ '/contrib/include/wx/stc', STCINC
+'/wx/stc')
476 contrib_copy_tree(WXDIR
+ '/contrib/src/stc', STCLOC
)
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
],
485 # copy a project specific py module to the main package dir
486 copy_file(location
+'/stc.py', PKGDIR
, update
=1, verbose
=1)
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
)
494 # and some macro definitions
495 stc_defines
= defines
[:]
496 stc_defines
.append( ('__WX__', None) )
497 stc_defines
.append( ('SCI_LEXER', None) )
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
,
528 '%s/PlatWX.cpp' % STCLOC
,
529 '%s/ScintillaWX.cpp' % STCLOC
,
530 '%s/stc.cpp' % STCLOC
,
533 include_dirs
= stc_includes
,
534 define_macros
= stc_defines
,
536 library_dirs
= libdirs
,
539 extra_compile_args
= cflags
,
540 extra_link_args
= lflags
,
543 wxpExtensions
.append(ext
)
547 #----------------------------------------------------------------------
548 # Define the IEWIN extension module (experimental)
549 #----------------------------------------------------------------------
551 if not GL_ONLY
and BUILD_IEWIN
:
552 print 'Preparing IEWIN...'
553 location
= 'contrib/iewin'
555 swig_files
= ['iewin.i', ]
557 swig_sources
= run_swig(swig_files
, location
, '', PKGDIR
,
558 USE_SWIG
, swig_force
, swig_args
)
561 ext
= Extension('iewinc', ['%s/IEHtmlWin.cpp' % location
,
564 include_dirs
= includes
,
565 define_macros
= defines
,
567 library_dirs
= libdirs
,
570 extra_compile_args
= cflags
,
571 extra_link_args
= lflags
,
574 wxpExtensions
.append(ext
)
577 #----------------------------------------------------------------------
578 # Define the XRC extension module
579 #----------------------------------------------------------------------
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'
587 swig_files
= ['xrc.i']
589 swig_sources
= run_swig(swig_files
, location
, '', PKGDIR
,
590 USE_SWIG
, swig_force
, swig_args
)
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
)
598 # make sure local copy of contrib files are up to date
600 contrib_copy_tree(WXDIR
+ '/contrib/include/wx/xrc', XMLINC
+'/wx/xrc')
601 contrib_copy_tree(WXDIR
+ '/contrib/src/xrc', XMLLOC
)
603 ext
= Extension('xrcc', ['%s/expat/xmlparse/xmlparse.c' % XMLLOC
,
604 '%s/expat/xmltok/xmlrole.c' % XMLLOC
,
605 '%s/expat/xmltok/xmltok.c' % XMLLOC
,
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
,
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
,
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
,
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
,
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
,
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
,
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
,
649 '%s/xmlres.cpp' % XMLLOC
,
650 '%s/xmlrsall.cpp' % XMLLOC
,
651 '%s/xmlwrite.cpp' % XMLLOC
,
655 include_dirs
= xmlres_includes
,
656 define_macros
= defines
,
658 library_dirs
= libdirs
,
661 extra_compile_args
= cflags
,
662 extra_link_args
= lflags
,
665 wxpExtensions
.append(ext
)
670 #----------------------------------------------------------------------
671 # Do the Setup/Build/Install/Whatever
672 #----------------------------------------------------------------------
674 if __name__
== "__main__":
678 description
= DESCRIPTION
,
679 long_description
= LONG_DESCRIPTION
,
681 author_email
= AUTHOR_EMAIL
,
687 PKGDIR
+'.lib.editor',
690 ext_package
= PKGDIR
,
691 ext_modules
= wxpExtensions
,
696 setup(name
= "wxPython-gl",
698 description
= "wxGLCanvas class for wxPython",
700 author_email
= AUTHOR_EMAIL
,
704 py_modules
= [ "wxPython.glcanvas" ],
706 ext_package
= PKGDIR
,
707 ext_modules
= wxpExtensions
,
713 #----------------------------------------------------------------------
714 #----------------------------------------------------------------------