diff options
author | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-03-04 14:29:27 +0100 |
---|---|---|
committer | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-03-05 11:39:11 +0100 |
commit | 5aa108214a21181406ec38a2fd5e82a279348f77 (patch) | |
tree | d903e6460226cd40b50725892fa44c85f7690ea7 /SConstruct | |
parent | 19cc2e363185b50d19e4f257dd3558896b9b49d3 (diff) |
scons: Preliminary code for quieting command lines.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/SConstruct b/SConstruct index 44ac0ad60d..6088128010 100644 --- a/SConstruct +++ b/SConstruct @@ -55,9 +55,6 @@ env = Environment( ENV = os.environ) Help(opts.GenerateHelpText(env)) -# for debugging -#print env.Dump() - # replicate options values in local variables debug = env['debug'] dri = env['dri'] @@ -87,6 +84,7 @@ Export([ # TODO: put the compiler specific settings in separate files # TODO: auto-detect as much as possible +common.generate(env) if platform == 'winddk': env.Tool('winddk', ['.']) @@ -219,9 +217,6 @@ if platform not in ('winddk',): 'Xfixes', ]) -# Convenience library support -common.createConvenienceLibBuilder(env) - Export('env') |