aco: Don't store LS VS outputs to LDS when TCS doesn't need them.
[mesa.git] / src / gallium / targets / graw-xlib / SConscript
index 979252b22d7301498b7b3dbac6e014996159d424..c4131923dc8638ffd355397b69096fd969444b72 100644 (file)
@@ -3,49 +3,43 @@
 
 Import('*')
 
-if env['platform'] != 'linux':
-    Return()
-
 env = env.Clone()
 
 env.Prepend(LIBS = [
     ws_xlib,
-    trace,
-    identity,
-#    gallium,
+    compiler,
+    mesautil,
+    gallium,
+    nir,
 ])
 
+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 = [
     'graw_xlib.c',
+    graw_util
 ]
 
 if True:
-    env.Append(CPPDEFINES = 'GALLIUM_SOFTPIPE')
+    env.Append(CPPDEFINES = ['GALLIUM_SOFTPIPE'])
     env.Prepend(LIBS = [softpipe])
 
 if env['llvm']:
     env.Append(CPPDEFINES = 'GALLIUM_LLVMPIPE')
-    env.Tool('udis86')
     env.Prepend(LIBS = [llvmpipe])
 
-# Need this for trace, identity drivers referenced by
-# gallium_wrap_screen().
-#
-env.Prepend(LIBS = [gallium])
-
-# TODO: write a wrapper function http://www.scons.org/wiki/WrapperFunctions
 graw = env.SharedLibrary(
     target ='graw',
     source = sources,
 )
 
-env.InstallSharedLibrary(graw, version=(1, 0))
-
-graw = env.FindIxes(graw, 'SHLIBPREFIX', 'SHLIBSUFFIX')
+graw = env.InstallSharedLibrary(graw, version=(1, 0))
 
-Export('graw')
+env.Alias('graw-xlib', graw)