mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2024-11-25 00:09:54 +00:00
nouveau: Add to SCons build.
This commit is contained in:
parent
dda8046a64
commit
e3eed8bf21
@ -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…
Reference in New Issue
Block a user