diff options
author | José Fonseca <[email protected]> | 2012-10-26 09:45:59 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2012-10-26 10:50:48 +0100 |
commit | 54536686b23f144b4734cc8f16daaf86d2bb8fb3 (patch) | |
tree | 50d92e2194faa98644e74d71ba6019b9d2d08876 /src/mesa/drivers/x11 | |
parent | 59d4bc8c48836ff86052ea62f6ce24e1f2402d02 (diff) |
scons: Build xlib swrast too.
Helpful for debugging.
Diffstat (limited to 'src/mesa/drivers/x11')
-rw-r--r-- | src/mesa/drivers/x11/SConscript | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/mesa/drivers/x11/SConscript b/src/mesa/drivers/x11/SConscript new file mode 100644 index 00000000000..cfa2815e297 --- /dev/null +++ b/src/mesa/drivers/x11/SConscript @@ -0,0 +1,48 @@ +Import('*') + +env = env.Clone() + +env.Append(CPPPATH = [ + '#/src/mapi', + '#/src/mesa', + '#/src/mesa/main', +]) + +env.Append(CPPDEFINES = ['USE_XSHM']) + +env.Prepend(LIBS = env['X11_LIBS']) + +env.Prepend(LIBS = [ + glapi, + glsl, + mesa, +]) + +sources = [ + 'fakeglx.c', + 'glxapi.c', + 'xfonts.c', + 'xm_api.c', + 'xm_buffer.c', + 'xm_dd.c', + 'xm_line.c', + 'xm_tri.c', +] + +# The sources depend on the python-generated GL API files/headers. +env.Depends(sources, glapi_headers) + +# libGL.so.1.6 +libgl_1_6 = env.SharedLibrary( + target ='GL', + source = sources, + SHLIBSUFFIX = env['SHLIBSUFFIX'] + '.1.6', +) + +# libGL.so.1 +libgl = env.subst('${SHLIBPREFIX}GL${SHLIBSUFFIX}') +libgl_1 = libgl + '.1' +env.Command(libgl_1, libgl_1_6, "ln -sf ${SOURCE.file} ${TARGET}") +env.Command(libgl, libgl_1, "ln -sf ${SOURCE.file} ${TARGET}") + +env.Alias('libgl-xlib-swrast', libgl) |