summaryrefslogtreecommitdiffstats
path: root/test/MSVC/batch.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix issue 2627: MSVC_BATCH=False should turn off batch, not turn it on.Gary Oberbrunner2011-04-241-0/+13
|
* Move 2.0 changes collected in branches/pending back to trunk for furtherGreg Noel2010-03-251-4/+2
| | | | | development. Note that this set of changes is NOT backward-compatible; the trunk no longer works with Python 1.5.2, 2.0, or 2.1.
* Remove more unnecessary imports from test scripts.Steven Knight2009-02-111-2/+0
|
* Add emacs and vim editing settings to the bottom of *.py files.Steven Knight2009-02-091-0/+6
|
* Issue 1086: add support for generic batch build actions, andSteven Knight2009-01-091-0/+155
specific support for batched compilation for Microsoft Visual C/C++. Merged revisions 3819-3851,3854-3869,3871-3877,3880 via svnmerge from http://scons.tigris.org/svn/scons/branches/sgk_batch ........ r3820 | stevenknight | 2008-12-09 23:59:14 -0800 (Tue, 09 Dec 2008) | 6 lines Issue 1086: Batch compilation support: * $MSVC_BATCH to control Visual C/C++ batch compilation. * New $CHANGED_SOURCES, $CHANGED_TARGETS, $UNCHANGED_SOURCES and $UNCHANGED_TARGETS construction variables. * New Action(batch_key=, targets=) keyword arguments. ........ r3880 | stevenknight | 2009-01-07 20:50:41 -0800 (Wed, 07 Jan 2009) | 3 lines Use UniqueList objects to collect the all_children(), all_prerequisites() and all_sources() lists instead of calling uniquer_hashables() by hand. ........