nouveau: Add to SCons build.
authorVinson Lee <vlee@vmware.com>
Sat, 24 Apr 2010 08:15:00 +0000 (01:15 -0700)
committerVinson Lee <vlee@vmware.com>
Sat, 24 Apr 2010 08:15:00 +0000 (01:15 -0700)
SConstruct
src/gallium/drivers/nouveau/SConscript [new file with mode: 0644]

index fdcd72b30d140944b8c7ef91ff1cb68e4aa16dfa..fdd48556a06d27334d814213808ca50d6ec5afca 100644 (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']))
 
diff --git a/src/gallium/drivers/nouveau/SConscript b/src/gallium/drivers/nouveau/SConscript
new file mode 100644 (file)
index 0000000..fe7af4d
--- /dev/null
@@ -0,0 +1,11 @@
+Import('*')
+
+env = env.Clone()
+
+nouveau = env.ConvenienceLibrary(
+    target = 'nouveau',
+    source = [
+        'nouveau_screen.c',
+    ])
+
+Export('nouveau')