diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2020-08-26 06:03:18 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2020-08-26 06:03:18 +0000 |
commit | af5e8f5366b05c3d4f8521f318c143a5c5dc3ea9 (patch) | |
tree | c5691445908b1beca9facf0e5e3c5d7f35f74228 /lib/mesa/src/gallium/targets/graw-gdi | |
parent | 27c93456b58343162f7c4ad20ca6bea0c9a91646 (diff) |
Merge Mesa 20.1.6
Diffstat (limited to 'lib/mesa/src/gallium/targets/graw-gdi')
-rw-r--r-- | lib/mesa/src/gallium/targets/graw-gdi/SConscript | 44 |
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) |