summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct7
1 files changed, 7 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index ea63b90f46..6ed44ddd06 100644
--- a/SConstruct
+++ b/SConstruct
@@ -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']: