mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
nouveau: Add to SCons build.
This commit is contained in:
parent
dda8046a64
commit
e3eed8bf21
2 changed files with 12 additions and 1 deletions
|
|
@ -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']))
|
||||
|
||||
|
|
|
|||
11
src/gallium/drivers/nouveau/SConscript
Normal file
11
src/gallium/drivers/nouveau/SConscript
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
Import('*')
|
||||
|
||||
env = env.Clone()
|
||||
|
||||
nouveau = env.ConvenienceLibrary(
|
||||
target = 'nouveau',
|
||||
source = [
|
||||
'nouveau_screen.c',
|
||||
])
|
||||
|
||||
Export('nouveau')
|
||||
Loading…
Add table
Reference in a new issue