diff options
author | Vinson Lee <[email protected]> | 2010-04-24 16:22:47 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-04-24 16:22:47 -0700 |
commit | bd93670bfdc1690ec9846ebe78156f1c3ef357d3 (patch) | |
tree | 559b73bc09d63ea23eb0f81689c6c32da0a04b98 /src | |
parent | 22e8ddc74843b82606c1f0934ec1d4fad2ffc853 (diff) |
nvfx: Add to SCons build.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/nvfx/SConscript | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/gallium/drivers/nvfx/SConscript b/src/gallium/drivers/nvfx/SConscript new file mode 100644 index 00000000000..fac32dace40 --- /dev/null +++ b/src/gallium/drivers/nvfx/SConscript @@ -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') |