diff options
author | José Fonseca <jfonseca@vmware.com> | 2010-03-09 15:07:57 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2010-03-09 15:09:32 +0000 |
commit | 706eda30578cbdd1456c09ccc2a570a5d6a99c92 (patch) | |
tree | 01c3850983962ad9fedf0dccf438ed4e78f0e61c /SConstruct | |
parent | b694f321707c98c71478aceb11f814643109367b (diff) |
scons: Add new targets option.
This will likely change. Most probably we'll just add an alias to indvidual
targets and use the regular scons targets arguments.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index e1c4a1898c..4cadd01363 100644 --- a/SConstruct +++ b/SConstruct @@ -53,6 +53,8 @@ opts.Add(ListVariable('drivers', 'pipe drivers to build', default_drivers, ['softpipe', 'failover', 'svga', 'i915', 'i965', 'trace', 'r300', 'identity', 'llvmpipe'])) opts.Add(ListVariable('winsys', 'winsys drivers to build', default_winsys, ['xlib', 'vmware', 'intel', 'i965', 'gdi', 'radeon'])) +opts.Add(ListVariable('targets', 'target drivers to build', 'all', + ['xlib'])) opts.Add(EnumVariable('MSVS_VERSION', 'MS Visual C++ version', None, allowed_values=('7.1', '8.0', '9.0'))) |