aco: Don't store LS VS outputs to LDS when TCS doesn't need them.
[mesa.git] / src / gallium / targets / graw-xlib / SConscript
index e50eb8a03d75ed7937e275f23708c1e65fb413e0..c4131923dc8638ffd355397b69096fd969444b72 100644 (file)
@@ -7,17 +7,19 @@ env = env.Clone()
 
 env.Prepend(LIBS = [
     ws_xlib,
-    trace,
-    rbug,
-    identity,
+    compiler,
+    mesautil,
     gallium,
+    nir,
 ])
 
-env.Prepend(LIBS = env['X11_LIBS'])
+env.Append(LIBS = env['X11_LIBS'])
+env.Append(LIBPATH = env['X11_LIBPATH'])
 
 env.Append(CPPPATH = [
     '#src/gallium/drivers',
     '#src/gallium/include/state_tracker',
+    '#src/gallium/winsys',
 ])
 
 sources = [
@@ -26,7 +28,7 @@ sources = [
 ]
 
 if True:
-    env.Append(CPPDEFINES = 'GALLIUM_SOFTPIPE')
+    env.Append(CPPDEFINES = ['GALLIUM_SOFTPIPE'])
     env.Prepend(LIBS = [softpipe])
 
 if env['llvm']: