nvfx: Add to SCons build.

This commit is contained in:
Vinson Lee
2010-04-24 16:22:47 -07:00
parent 22e8ddc748
commit bd93670bfd
2 changed files with 37 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', 'nouveau', 'nv50']))
['softpipe', 'failover', 'svga', 'i915', 'i965', 'trace', 'r300', 'identity', 'llvmpipe', 'nouveau', 'nv50', 'nvfx']))
opts.Add(ListVariable('winsys', 'winsys drivers to build', default_winsys,
['xlib', 'vmware', 'i915', 'i965', 'gdi', 'radeon', 'graw-xlib']))

View File

@@ -0,0 +1,36 @@
Import('*')
env = env.Clone()
nvfx = env.ConvenienceLibrary(
target = 'nvfx',
source = [
'nv04_surface_2d.c',
'nvfx_buffer.c',
'nvfx_context.c',
'nvfx_clear.c',
'nvfx_draw.c',
'nvfx_fragprog.c',
'nvfx_fragtex.c',
'nv30_fragtex.c',
'nv40_fragtex.c',
'nvfx_miptree.c',
'nvfx_query.c',
'nvfx_resource.c',
'nvfx_screen.c',
'nvfx_state.c',
'nvfx_state_blend.c',
'nvfx_state_emit.c',
'nvfx_state_fb.c',
'nvfx_state_rasterizer.c',
'nvfx_state_scissor.c',
'nvfx_state_stipple.c',
'nvfx_state_viewport.c',
'nvfx_state_zsa.c',
'nvfx_surface.c',
'nvfx_transfer.c',
'nvfx_vbo.c',
'nvfx_vertprog.c',
])
Export('nvfx')