blob: 233ef464be5494b60fd0e568392cd78417ced51c (
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,
i965drm,
i965,
trace,
]
env.LoadableModule(
target ='i965_dri.so',
source = COMMON_GALLIUM_SOURCES,
LIBS = drivers + mesa + auxiliaries + env['LIBS'],
SHLIBPREFIX = '',
)
|