blob: e9f742c43ce34f7a82f9a0f96f8faa765603e1fc (
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
|
Import('*')
if not 'softpipe' in env['drivers']:
print 'warning: softpipe driver not built skipping swrastg_dri.so'
Return()
env = drienv.Clone()
env.Append(CPPPATH = [
'#/src/gallium/winsys/sw/dri',
])
env.Prepend(LIBS = [
st_drisw,
ws_dri,
softpipe,
trace,
mesa,
glsl,
gallium,
COMMON_DRI_SW_OBJECTS
])
swrastg_sources = [
'swrast_drm_api.c'
]
env.LoadableModule(
target ='swrastg_dri.so',
source = swrastg_sources,
SHLIBPREFIX = '',
)
|