summaryrefslogtreecommitdiff
path: root/lib/mesa/src/gallium/targets/graw-gdi/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mesa/src/gallium/targets/graw-gdi/SConscript')
-rw-r--r--lib/mesa/src/gallium/targets/graw-gdi/SConscript44
1 files changed, 0 insertions, 44 deletions
diff --git a/lib/mesa/src/gallium/targets/graw-gdi/SConscript b/lib/mesa/src/gallium/targets/graw-gdi/SConscript
deleted file mode 100644
index 67d437374..000000000
--- a/lib/mesa/src/gallium/targets/graw-gdi/SConscript
+++ /dev/null
@@ -1,44 +0,0 @@
-#######################################################################
-# SConscript for graw-gdi
-
-Import('*')
-
-env = env.Clone()
-
-env.Append(CPPPATH = [
- '#src/gallium/winsys/sw',
-])
-
-env.Prepend(LIBS = [
- mesautil,
- gallium,
- 'gdi32',
- 'user32',
- 'ws2_32',
-])
-
-sources = [
- 'graw_gdi.c',
- graw_util,
-]
-
-if True:
- env.Append(CPPDEFINES = ['GALLIUM_TRACE', 'GALLIUM_RBUG', 'GALLIUM_SOFTPIPE'])
- env.Prepend(LIBS = [trace, rbug, softpipe])
-
-if env['llvm']:
- env.Append(CPPDEFINES = 'GALLIUM_LLVMPIPE')
- env.Prepend(LIBS = [llvmpipe])
-
-graw = env.SharedLibrary(
- target = 'graw',
- source = sources,
- LIBS = ws_gdi + env['LIBS'],
-)
-
-if env['platform'] == 'windows':
- graw = env.FindIxes(graw, 'LIBPREFIX', 'LIBSUFFIX')
-else:
- graw = env.FindIxes(graw, 'SHLIBPREFIX', 'SHLIBSUFFIX')
-
-env.Alias('graw-gdi', graw)