blob: b11a1927f7c8f10c29c4bf2b2a82abd5f557205e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Import('*')
env = drienv.Clone()
drivers = [
softpipe,
i915simple,
inteldrm
]
env.SharedLibrary(
target ='i915_dri.so',
source = COMMON_GALLIUM_SOURCES,
LIBS = drivers + mesa + auxiliaries + env['LIBS'],
)
|