X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6d61d718f21e79a0f1cac1b41db1dab06cb6306e..dc2819335f5c717ba92c76df4a51591fc4cf5143:/wxPython/setup.py diff --git a/wxPython/setup.py b/wxPython/setup.py index 43a2a37691..0f1b24d2b7 100755 --- a/wxPython/setup.py +++ b/wxPython/setup.py @@ -189,11 +189,11 @@ wxpExtensions.append(ext) # Extension for the GDI module swig_sources = run_swig(['gdi.i'], 'src', GENDIR, PKGDIR, USE_SWIG, swig_force, swig_args, swig_deps + - ['src/__gdi_rename.i', - 'src/_bitmap.i', + ['src/_bitmap.i', 'src/_colour.i', 'src/_dc.i', 'src/_graphics.i', + 'src/_overlay.i', 'src/_gdiobj.i', 'src/_imaglist.i', 'src/_region.i', @@ -232,9 +232,7 @@ wxpExtensions.append(ext) # Extension for the windows module swig_sources = run_swig(['windows.i'], 'src', GENDIR, PKGDIR, USE_SWIG, swig_force, swig_args, swig_deps + - ['src/__windows_rename.i', - 'src/__windows_reverse.txt', - 'src/_panel.i', + ['src/_panel.i', 'src/_toplvl.i', 'src/_statusbar.i', 'src/_splitter.i', @@ -266,9 +264,7 @@ wxpExtensions.append(ext) # Extension for the controls module swig_sources = run_swig(['controls.i'], 'src', GENDIR, PKGDIR, USE_SWIG, swig_force, swig_args, swig_deps + - [ 'src/__controls_rename.i', - 'src/__controls_reverse.txt', - 'src/_toolbar.i', + [ 'src/_toolbar.i', 'src/_button.i', 'src/_checkbox.i', 'src/_choice.i', @@ -292,6 +288,8 @@ swig_sources = run_swig(['controls.i'], 'src', GENDIR, PKGDIR, 'src/_datectrl.i', 'src/_hyperlink.i', 'src/_picker.i', + 'src/_collpane.i', + 'src/_srchctrl.i', ], True) ext = Extension('_controls_', swig_sources, @@ -311,9 +309,7 @@ wxpExtensions.append(ext) # Extension for the misc module swig_sources = run_swig(['misc.i'], 'src', GENDIR, PKGDIR, USE_SWIG, swig_force, swig_args, swig_deps + - [ 'src/__misc_rename.i', - 'src/__misc_reverse.txt', - 'src/_settings.i', + [ 'src/_settings.i', 'src/_functions.i', 'src/_misc.i', 'src/_tipdlg.i', @@ -332,6 +328,7 @@ swig_sources = run_swig(['misc.i'], 'src', GENDIR, PKGDIR, 'src/_clipbrd.i', 'src/_stdpaths.i', 'src/_power.i', + 'src/_about.i', ], True) ext = Extension('_misc_', swig_sources, @@ -365,6 +362,20 @@ ext = Extension('_calendar', swig_sources, wxpExtensions.append(ext) +swig_sources = run_swig(['combo.i'], 'src', GENDIR, PKGDIR, + USE_SWIG, swig_force, swig_args, swig_deps) +ext = Extension('_combo', swig_sources, + include_dirs = includes, + define_macros = defines, + library_dirs = libdirs, + libraries = libs, + extra_compile_args = cflags, + extra_link_args = lflags, + **depends + ) +wxpExtensions.append(ext) + + swig_sources = run_swig(['grid.i'], 'src', GENDIR, PKGDIR, USE_SWIG, swig_force, swig_args, swig_deps) ext = Extension('_grid', swig_sources, @@ -395,7 +406,7 @@ wxpExtensions.append(ext) mediaLibs = libs[:] -if not MONOLITHIC: +if not MONOLITHIC and findLib('media', libdirs): mediaLibs += makeLibName('media') swig_sources = run_swig(['media.i'], 'src', GENDIR, PKGDIR, USE_SWIG, swig_force, swig_args, swig_deps) @@ -443,14 +454,14 @@ wxpExtensions.append(ext) swig_sources = run_swig(['xrc.i'], 'src', GENDIR, PKGDIR, USE_SWIG, swig_force, swig_args, swig_deps + - [ 'src/_xrc_rename.i', - 'src/_xrc_ex.py', + [ 'src/_xrc_ex.py', 'src/_xmlres.i', 'src/_xmlsub.i', 'src/_xml.i', 'src/_xmlhandler.i', ]) -if not MONOLITHIC: + +if not MONOLITHIC and findLib('xrc', libdirs): xrcLib = makeLibName('xrc') else: xrcLib = [] @@ -472,7 +483,7 @@ wxpExtensions.append(ext) swig_sources = run_swig(['richtext.i'], 'src', GENDIR, PKGDIR, USE_SWIG, swig_force, swig_args, swig_deps) -if not MONOLITHIC: +if not MONOLITHIC and findLib('richtext', libdirs): richLib = makeLibName('richtext') else: richLib = [] @@ -497,8 +508,9 @@ swig_sources = run_swig(['aui.i'], 'src', GENDIR, PKGDIR, opj(WXDIR, 'include/wx/aui/floatpane.h'), opj(WXDIR, 'include/wx/aui/dockart.h'), opj(WXDIR, 'include/wx/aui/auibook.h'), + opj(WXDIR, 'include/wx/aui/tabmdi.h'), ]) -if not MONOLITHIC: +if not MONOLITHIC and findLib('aui', libdirs): auiLib = makeLibName('aui') else: auiLib = [] @@ -514,6 +526,23 @@ ext = Extension('_aui', swig_sources, wxpExtensions.append(ext) +swig_sources = run_swig(['animate.i'], 'src', GENDIR, PKGDIR, + USE_SWIG, swig_force, swig_args, swig_deps) +ext = Extension('_animate', + swig_sources, + + include_dirs = includes + CONTRIBS_INC, + define_macros = defines, + + library_dirs = libdirs, + libraries = libs, + + extra_compile_args = cflags, + extra_link_args = lflags, + ) + +wxpExtensions.append(ext) + @@ -627,6 +656,10 @@ if BUILD_STC: opj(location, "_stc_gendocs.i"), ] + swig_deps) + stcLibs = libs[:] + if not MONOLITHIC and findLib('stc', libdirs): + stcLibs += makeLibName('stc') + ext = Extension('_stc', swig_sources, @@ -634,7 +667,7 @@ if BUILD_STC: define_macros = defines, library_dirs = libdirs, - libraries = libs + makeLibName('stc'), + libraries = stcLibs, extra_compile_args = cflags, extra_link_args = lflags, @@ -689,40 +722,19 @@ if BUILD_GIZMOS: [ '%s/_treelist.i' % location]) ext = Extension('_gizmos', - [ '%s/treelistctrl.cpp' % opj(location, 'wxCode/src') ] + swig_sources, + [ '%s/treelistctrl.cpp' % opj(location, 'wxCode/src'), + '%s/gizmos/dynamicsash.cpp' % opj(location, 'wxCode/src'), + '%s/gizmos/editlbox.cpp' % opj(location, 'wxCode/src'), + '%s/gizmos/ledctrl.cpp' % opj(location, 'wxCode/src'), + '%s/gizmos/splittree.cpp' % opj(location, 'wxCode/src'), + '%s/gizmos/statpict.cpp' % opj(location, 'wxCode/src'), + ] + swig_sources, include_dirs = includes + [ location, opj(location, 'wxCode/include') ] + CONTRIBS_INC, define_macros = defines, library_dirs = libdirs, - libraries = libs + makeLibName('gizmos'), - - extra_compile_args = cflags, - extra_link_args = lflags, - ) - - wxpExtensions.append(ext) - - -#---------------------------------------------------------------------- -# Define the ANIMATE extension module -#---------------------------------------------------------------------- - -if BUILD_ANIMATE: - msg('Preparing ANIMATE...') - location = 'contrib/animate' - - swig_sources = run_swig(['animate.i'], location, GENDIR, PKGDIR, - USE_SWIG, swig_force, swig_args, swig_deps) - - ext = Extension('_animate', - swig_sources, - - include_dirs = includes + CONTRIBS_INC, - define_macros = defines, - - library_dirs = libdirs, - libraries = libs + makeLibName('animate'), + libraries = libs, extra_compile_args = cflags, extra_link_args = lflags, @@ -731,7 +743,6 @@ if BUILD_ANIMATE: wxpExtensions.append(ext) - #---------------------------------------------------------------------- # Define the DLLWIDGET extension module #---------------------------------------------------------------------- @@ -802,6 +813,8 @@ else: i_files = glob.glob(opj("src/*.i")) + \ glob.glob(opj("src/_*.py")) + \ glob.glob(opj("src/*.swg")) + if BUILD_GLCANVAS: + i_files += glob.glob(opj("contrib/glcanvas/*.i")) HEADERS = zip(h_files, ["/wxPython"]*len(h_files)) + \ zip(i_files, ["/wxPython/i_files"]*len(i_files)) @@ -849,6 +862,7 @@ if __name__ == "__main__": 'wx.lib', 'wx.lib.analogclock', 'wx.lib.analogclock.lib_setup', + 'wx.lib.art', 'wx.lib.colourchooser', 'wx.lib.editor', 'wx.lib.floatcanvas',