2f90df854e
2. the C++ versions of wxSizer and firends, Python versions are 'depreciated' 3. wxPyEvent and wxPyCommandEvent, event classes that can carry some python objects through the event system and safely come back out again. 4. wxGridSizer and wxFlexGridSizer 5. wxValidator 6. wxPyOnDemandOutputWindow 7. several tweaks, fixes and additions of missing methods, etc. 8. and probably several other things I am forgetting since CVS was down so long... git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3758 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
31 lines
793 B
Python
Executable File
31 lines
793 B
Python
Executable File
#!/usr/bin/env python
|
|
#----------------------------------------------------------------------------
|
|
# Name: buildall.py
|
|
# Purpose: Invokes the build script for all modules defined in
|
|
# MODULELIST
|
|
#
|
|
# Author: Robin Dunn
|
|
#
|
|
# Created: 18-Aug-1999
|
|
# RCS-ID: $Id$
|
|
# Copyright: (c) 1999 by Total Control Software
|
|
# Licence: wxWindows license
|
|
#----------------------------------------------------------------------------
|
|
|
|
import sys, os
|
|
sys.path.insert(0, '../distrib')
|
|
import build
|
|
|
|
MODULELIST = ['html', 'glcanvas', 'utils', 'ogl', ] #'lseditor']
|
|
|
|
|
|
|
|
for module in MODULELIST:
|
|
cwd = os.getcwd()
|
|
print "**** Building %s ****" % module
|
|
err = build.main([sys.argv[0], '-C', module] + sys.argv[1:])
|
|
os.chdir(cwd)
|
|
if err:
|
|
break
|
|
|