summaryrefslogtreecommitdiff
path: root/src/gallium/targets/dri-i965/SConscript
blob: 7eb3c436a322db75506f2a0ee6d5c8c6cdfb7928 (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
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.Append(CPPDEFINES = [
    'GALLIUM_SOFTPIPE',
    'GALLIUM_RBUG',
    'GALLIUM_TRACE'
])

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 = '',
)