summaryrefslogtreecommitdiff
path: root/src/gallium/targets/dri-i965/SConscript
blob: 9e12c61aabc7fc10d9a5e422a98f29389cbe2990 (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
Import('*')

if not 'i965' in env['drivers']:
    print 'warning: i965 pipe driver not built skipping i965_dri.so'
    Return()

env = drienv.Clone()

env.ParseConfig('pkg-config --cflags --libs libdrm_intel')

env.Prepend(LIBS = [
    st_dri,
    i965drm,
    ws_drm,
    ws_wrapper,
    i965,
    trace,
    rbug,
    mesa,
    glsl,
    gallium,
    COMMON_DRI_DRM_OBJECTS
])

env.LoadableModule(
    target = 'i965_dri.so',
    source = 'target.c',
    SHLIBPREFIX = '',
)