diff options
author | Michal Krol <[email protected]> | 2010-11-04 14:33:11 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2010-11-04 14:34:27 +0100 |
commit | 29beaed6dccce5ccedc72446c8d2011324fc92f4 (patch) | |
tree | 98261ce87bf46e0b7885c8205acc18c902bca8f0 /src/gallium/targets/graw-gdi/SConscript | |
parent | 560ad7e59940423a696e93e62ec3c41b1e553421 (diff) |
graw/gdi: Initial commit.
Diffstat (limited to 'src/gallium/targets/graw-gdi/SConscript')
-rw-r--r-- | src/gallium/targets/graw-gdi/SConscript | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/gallium/targets/graw-gdi/SConscript b/src/gallium/targets/graw-gdi/SConscript new file mode 100644 index 00000000000..8ee8915acec --- /dev/null +++ b/src/gallium/targets/graw-gdi/SConscript @@ -0,0 +1,41 @@ +####################################################################### +# SConscript for graw-gdi + +Import('*') + +env = env.Clone() + +env.Append(CPPPATH = [ + '#src/gallium/winsys/sw', +]) + +env.Prepend(LIBS = [ + gallium, + 'gdi32', + identity, + rbug, + trace, + 'user32', + 'ws2_32', +]) + +sources = [ + 'graw_gdi.c', + graw_util, +] + +env.Append(CPPDEFINES = 'GALLIUM_SOFTPIPE') +env.Prepend(LIBS = [softpipe]) + +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) |