X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b5c5355ba39f4ab9147270b32fe29b74bd1aa7e8..a11a0ead4aeaf485a7d0ecf4928ee81bd9f9715b:/wxPython/setup.py diff --git a/wxPython/setup.py b/wxPython/setup.py index 951b307e1d..43a2a37691 100755 --- a/wxPython/setup.py +++ b/wxPython/setup.py @@ -156,8 +156,8 @@ CLEANUP.append('licence') if os.name == 'nt': - build_locale_dir(opj(PKGDIR, 'i18n')) - DATA_FILES += build_locale_list(opj(PKGDIR, 'i18n')) + build_locale_dir(opj(PKGDIR, 'locale')) + DATA_FILES += build_locale_list(opj(PKGDIR, 'locale')) if os.name == 'nt': @@ -193,6 +193,7 @@ swig_sources = run_swig(['gdi.i'], 'src', GENDIR, PKGDIR, 'src/_bitmap.i', 'src/_colour.i', 'src/_dc.i', + 'src/_graphics.i', 'src/_gdiobj.i', 'src/_imaglist.i', 'src/_region.i', @@ -684,7 +685,8 @@ if BUILD_GIZMOS: location = 'contrib/gizmos' swig_sources = run_swig(['gizmos.i'], location, GENDIR, PKGDIR, - USE_SWIG, swig_force, swig_args, swig_deps) + USE_SWIG, swig_force, swig_args, swig_deps + + [ '%s/_treelist.i' % location]) ext = Extension('_gizmos', [ '%s/treelistctrl.cpp' % opj(location, 'wxCode/src') ] + swig_sources,