diff options
| author | Chia-I Wu <olvaffe@gmail.com> | 2009-09-15 14:16:22 +0800 | 
|---|---|---|
| committer | Chia-I Wu <olvaffe@gmail.com> | 2009-09-15 14:16:22 +0800 | 
| commit | e2ba90a9cc762cf00a168f0a59d31e7dc52fc42e (patch) | |
| tree | fe3206d7602ad935296884742980f3c4d30bd867 /src/gallium/winsys/xlib/SConscript | |
| parent | 11a4292d4eb515813b82b8d688a318adef66b3e6 (diff) | |
| parent | b4b8800315637d9218a81c76f09df7d601710d29 (diff) | |
Merge commit 'eee/mesa-es' into android
Diffstat (limited to 'src/gallium/winsys/xlib/SConscript')
| -rw-r--r-- | src/gallium/winsys/xlib/SConscript | 66 | 
1 files changed, 66 insertions, 0 deletions
diff --git a/src/gallium/winsys/xlib/SConscript b/src/gallium/winsys/xlib/SConscript new file mode 100644 index 0000000000..467d595d33 --- /dev/null +++ b/src/gallium/winsys/xlib/SConscript @@ -0,0 +1,66 @@ +####################################################################### +# SConscript for xlib winsys + +Import('*') + +if env['platform'] == 'linux' \ +        and 'mesa' in env['statetrackers'] \ +        and set(('softpipe', 'llvmpipe', 'i915simple', 'trace')).intersection(env['drivers']) \ +        and not env['dri']: + +    env = env.Clone() + +    env.Append(CPPPATH = [ +        '#/src/mesa', +        '#/src/mesa/main', +        '#src/gallium/state_trackers/glx/xlib', +    ]) + +    env.Append(CPPDEFINES = ['USE_XSHM']) + +    sources = [ +        'xlib.c', +    ] + +    drivers = [] +         +    if 'softpipe' in env['drivers']: +        env.Append(CPPDEFINES = 'GALLIUM_SOFTPIPE') +        sources += ['xlib_softpipe.c'] +        drivers += [softpipe] + +    if 'llvmpipe' in env['drivers']: +        env.Tool('llvm') +        if 'LLVM_VERSION' in env: +            env.Append(CPPDEFINES = 'GALLIUM_LLVMPIPE') +            env.Tool('udis86') +            sources += ['xlib_llvmpipe.c'] +            drivers += [llvmpipe] + +    if 'i965simple' in env['drivers']: +        env.Append(CPPDEFINES = 'GALLIUM_I965SIMPLE') +        sources += [ +            'xlib_brw_aub.c', +            'xlib_brw_context.c', +            'xlib_brw_screen.c', +        ] +        drivers += [i965simple] +         +    if 'cell' in env['drivers']: +        env.Append(CPPDEFINES = 'GALLIUM_CELL') +        sources += ['xlib_cell.c'] +        drivers += [cell] + +    if 'trace' in env['drivers']: +        env.Append(CPPDEFINES = 'GALLIUM_TRACE') +        sources += ['xlib_trace.c'] +        drivers += [trace] + +    # TODO: write a wrapper function http://www.scons.org/wiki/WrapperFunctions +    libgl = env.SharedLibrary( +        target ='GL', +        source = sources, +        LIBS = st_xlib + glapi + mesa + drivers + auxiliaries + env['LIBS'], +    ) + +    env.InstallSharedLibrary(libgl, version=(1, 5))  | 
