gallivm: added lp_build_andc()
[mesa.git] / SConstruct
index ea63b90f46fb19ce57c632948e1d7eeb1e243ee9..6ed44ddd0677181de86101896643b6404dd879fc 100644 (file)
@@ -110,12 +110,19 @@ Export([
 #######################################################################
 # Environment setup
 
+# Always build trace and identity drivers
+if 'trace' not in env['drivers']:
+    env['drivers'].append('trace')
+if 'identity' not in env['drivers']:
+    env['drivers'].append('identity')
+
 # Includes
 env.Append(CPPPATH = [
        '#/include',
        '#/src/gallium/include',
        '#/src/gallium/auxiliary',
        '#/src/gallium/drivers',
+       '#/src/gallium/winsys',
 ])
 
 if env['msvc']: