diff options
author | José Fonseca <[email protected]> | 2009-12-31 22:18:17 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-01-01 12:16:19 +0000 |
commit | f8f4757d46627fb453f08dc63fde3d7f458eafe2 (patch) | |
tree | 372bb0bd2c09712f7fef58d66aa7ef493da6bbcc /src/gallium/winsys/gdi | |
parent | fc8e0b97e53fc94b9bafa038cd4420a9588e62f7 (diff) |
scons: Aggregate all tiny libraries in a single library.
Makes integration of gallium into out of tree components much easier. No
pratical change for components in this tree,
Diffstat (limited to 'src/gallium/winsys/gdi')
-rw-r--r-- | src/gallium/winsys/gdi/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/winsys/gdi/SConscript b/src/gallium/winsys/gdi/SConscript index 74f6b2fd475..bded865785b 100644 --- a/src/gallium/winsys/gdi/SConscript +++ b/src/gallium/winsys/gdi/SConscript @@ -45,5 +45,5 @@ if env['platform'] == 'windows': env.SharedLibrary( target ='opengl32', source = sources, - LIBS = wgl + glapi + mesa + drivers + auxiliaries + glsl + env['LIBS'], + LIBS = wgl + glapi + mesa + drivers + gallium + glsl + env['LIBS'], ) |