summaryrefslogtreecommitdiff
path: root/src/gallium/targets/dri-swrast/SConscript
blob: 9a3838d64e20c34c7f237a10549919b6e809be03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Import('*')

if not set(('softpipe', 'llvmpipe')).intersection(env['drivers']):
    print 'warning: no supported pipe driver: skipping build of swrastg_dri.so'
    Return()

env = drienv.Clone()

env.Append(CPPPATH = [
    '#/src/gallium/winsys/sw/dri',
])

env.Prepend(LIBS = [
    st_drisw,
    ws_dri,
    trace,
    mesa,
    glsl,
    gallium,
    COMMON_DRI_SW_OBJECTS
])

if 'softpipe' in env['drivers']:
    env.Append(CPPDEFINES = 'GALLIUM_SOFTPIPE')
    env.Prepend(LIBS = [softpipe])

if 'llvmpipe' in env['drivers']:
    env.Append(CPPDEFINES = 'GALLIUM_LLVMPIPE')
    env.Tool('udis86')
    env.Prepend(LIBS = [llvmpipe])

swrastg_sources = [
    'swrast_drm_api.c'
]

env.LoadableModule(
    target ='swrastg_dri.so',
    source = swrastg_sources,
    SHLIBPREFIX = '',
)