nouveau: Add to SCons build.

This commit is contained in:
Vinson Lee 2010-04-24 01:15:00 -07:00
parent dda8046a64
commit e3eed8bf21
2 changed files with 12 additions and 1 deletions

View File

@ -50,7 +50,7 @@ common.AddOptions(opts)
opts.Add(ListVariable('statetrackers', 'state trackers to build', default_statetrackers,
['mesa', 'python', 'xorg']))
opts.Add(ListVariable('drivers', 'pipe drivers to build', default_drivers,
['softpipe', 'failover', 'svga', 'i915', 'i965', 'trace', 'r300', 'identity', 'llvmpipe']))
['softpipe', 'failover', 'svga', 'i915', 'i965', 'trace', 'r300', 'identity', 'llvmpipe', 'nouveau']))
opts.Add(ListVariable('winsys', 'winsys drivers to build', default_winsys,
['xlib', 'vmware', 'i915', 'i965', 'gdi', 'radeon', 'graw-xlib']))

View File

@ -0,0 +1,11 @@
Import('*')
env = env.Clone()
nouveau = env.ConvenienceLibrary(
target = 'nouveau',
source = [
'nouveau_screen.c',
])
Export('nouveau')