summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Script/SConscript.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix the use of Configure() contexts in nested subsidiary SConscript files. ↵Steven Knight2005-12-281-2/+2
| | | | (Jon Rafkind)
* Enhance EnsureSConsVersion() to take revision numbers, too. (Amir Szekely)Steven Knight2005-08-121-11/+23
|
* Eliminate multiple calls to os.stat() to fetch file info.Steven Knight2005-05-131-3/+2
|
* Remove widespread reliance on SCons.Node.FS.default_fs so we can initialize ↵Steven Knight2005-04-021-4/+4
| | | | it once (later than we used to) and eliminate all the __setTopLevelDir() calls.
* Restore (some) old SCons.Script.* names, some released SConscript files are ↵Steven Knight2005-03-171-0/+10
| | | | using them.
* Fix creating a build_dir from scratch when there's a subsidiary SConscript() ↵Steven Knight2005-02-161-1/+3
| | | | file.
* Eliminate Executor's creation and use of a build_dict and a subst_dict, ↵Steven Knight2005-01-101-3/+7
| | | | which were creating a separate OverrideEnvironment for every target and foiling the Memoizer's attempts at speeding up things.
* Support 'from SConsScript import *' to allow Python modules imported by ↵Steven Knight2005-01-081-209/+63
| | | | SConscript files to get at the global builders and functions more easily.
* Remove build engine dependencies on SCons.Script. Fix a misspelled variable ↵Steven Knight2005-01-081-1/+13
| | | | name.
* Handle moved SCons source tree. (Kevin Quick)Steven Knight2004-11-111-33/+25
|
* Fix use of a list of SConscript files when calling env.SConscript().Steven Knight2004-09-291-1/+7
|
* Add a ParseDepends() function to read up mkdep-style files.Steven Knight2004-09-251-0/+1
|
* Remove all features deprecated in 0.93 or earlier.Steven Knight2004-09-031-38/+0
|
* Allow Help() to be called multiple times, appending to the text each time. ↵Steven Knight2004-08-301-2/+8
| | | | (Chad Austin)
* Add a Flatten() function to help the transition to Builders returning lists.Steven Knight2004-08-121-0/+1
|
* Make exception handling thread-safe by using sys.exc_info() instead of ↵Steven Knight2004-07-131-3/+4
| | | | sys.exc_{type,value}.
* Make env.SConscript() expand dirs names.Steven Knight2004-05-251-0/+7
|
* Add support for fetching command-line arguments by position number. (Gary ↵Steven Knight2004-05-231-0/+3
| | | | Oberbrunner)
* Ant-like tasks: Chmod(), Copy(), Delete(), Mkdir(), Move(), Touch().Steven Knight2004-04-191-0/+8
|
* Fix the Command() global function when the action is a command-line string.Steven Knight2004-03-311-23/+1
|
* Add an Execute() method.Steven Knight2004-03-121-0/+3
|
* Save memory by allowing Nodes to clean up their Executor's build ↵Steven Knight2004-02-091-0/+6
| | | | environments after they've been built.
* Fix ARGUMENTS specifications on the command line that have multiple = in ↵Steven Knight2004-01-251-1/+1
| | | | them. (Zephaniah Hull)
* Handle Configure() calls in multiple SConscript files.Steven Knight2004-01-081-13/+13
|
* Fix spelling errors in error messages, man page typos.Steven Knight2003-12-081-3/+3
|
* Make the message about missing SConscript files a warning, not a hard ↵Steven Knight2003-12-011-18/+22
| | | | write(), so it can be ignored/disabled. (Scott Fritchie)
* Add BUILD_TARGETS, COMMAND_LINE_TARGETS and DEFAULT_TARGETS variables.Steven Knight2003-11-071-23/+71
|
* Add new Options flavors. (Hartmut Goebel)Steven Knight2003-11-041-1/+6
|
* Fix subclassing of the Environment and Scanner classes.Steven Knight2003-10-301-288/+336
|
* Fix a regression with CPPDEFINES when using the g++ Tool.Steven Knight2003-10-261-340/+292
|
* Better detection of KeyboardInterrupts. (Christoph Wiedemann)Steven Knight2003-10-211-1/+1
|
* Fix various SConf bugs. (Christoph Wiedemann)Steven Knight2003-10-211-0/+6
|
* More Environment method conversions:Steven Knight2003-10-131-31/+22
|
* Add more environment methods for global functions: Action(), Builder(), ↵Steven Knight2003-09-251-19/+32
| | | | Environment(), Literal(), Platform(), Split(), Tool(). Deprecate ParseConfig() in favor of an environment method.
* Refactor the GetSConscriptFilenames() function into an SConsEnvironment method.Steven Knight2003-09-251-76/+77
|
* Add global functions for all of the default Builders attached to the default ↵Steven Knight2003-09-231-59/+91
| | | | Environment.
* Expand construction variables on the values of SConscript() keyword arguments.Steven Knight2003-09-181-1/+6
|
* Turn more global functions into Environment methods. (clone of 0.92.C121)Steven Knight2003-09-151-85/+117
|
* Make more Environment methods from global functions.Steven Knight2003-09-141-30/+49
|
* Add SourceSignatures() and TargetSignatures() environment methods.Steven Knight2003-09-121-24/+4
|
* Make a Clean() environment method. Add global functions for AlwaysBuild(), ↵Steven Knight2003-09-101-21/+10
| | | | Command(), Depends(), Ignore(), Install(), InstallAs(), Precious(), SideEffect() and SourceCode().
* Give the global functions corresponding Environment methods.Steven Knight2003-09-081-41/+21
|
* Support using a single .sconsign file. (Stephen Kennedy)Steven Knight2003-09-021-1/+8
|
* Fix EnsurePythonVersion's handling of alphanumeric version strings.Steven Knight2003-08-291-3/+9
|
* Don't Split() SConscript file name strings on white space.Steven Knight2003-07-311-15/+18
|
* Allow Builders to take a dictionary that maps source file suffixes to ↵Steven Knight2003-07-291-7/+0
| | | | emitter functions. Refactor initialization of a number of builders out of the SCons.Defaults.py module.
* Record and print an internal stack trace when Taskmaster detects errors for ↵Steven Knight2003-07-271-1/+25
| | | | easier debugging. (Gary Oberbrunner) Better debugging of Python exceptions (like TypeErrors) in SConscript files.
* Only create a default Environment when asked to. (Chad Austin)Steven Knight2003-07-221-1/+1
|
* Fix Import('*')Steven Knight2003-06-131-2/+2
|
* Fix Options.Update().Steven Knight2003-06-091-2/+2
|