summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/drm/intel/dri/SConscript
blob: 6c00861f51737f78db3304af5a658cc6e7d350c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Import('*')

env = drienv.Clone()

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

drivers = [
    st_dri,
    inteldrm,
    softpipe,
    i915simple,
    trace,
]

env.SharedLibrary(
    target ='i915_dri.so',
    source = COMMON_GALLIUM_SOURCES,
    LIBS = drivers + mesa + auxiliaries + env['LIBS'],
)