blob: 9e68fba018dcdc79527b819ec145e3c42b512784 (
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
|
#######################################################################
# SConscript for xlib state_tracker
Import('*')
if env['platform'] == 'linux' \
and 'mesa' in env['statetrackers'] \
and ('softpipe' or 'i915simple' or 'trace') in env['drivers']:
env = env.Clone()
env.Append(CPPPATH = [
'#/src/mesa',
'#/src/mesa/main',
])
env.Append(CPPDEFINES = ['USE_XSHM'])
st_xlib = env.ConvenienceLibrary(
target = 'st_xlib',
source = [
'glx_getproc.c',
'fakeglx.c',
'glx_usefont.c',
'xm_api.c',
]
)
Export('st_xlib')
|