SConscript revision 99f11d0e18e1ff5a433c84d52ffc13b9684c2650
1#######################################################################
2# SConscript for xlib state_tracker
3
4Import('*')
5
6if env['platform'] == 'linux' \
7        and 'mesa' in env['statetrackers']:
8
9    env = env.Clone()
10
11    env.Append(CPPPATH = [
12        '#/src/mesa',
13        '#/src/mesa/main',
14    ])
15
16    st_xlib = env.ConvenienceLibrary(
17	target = 'st_xlib',
18	source = [
19		'glx_api.c',
20		'glx_getproc.c',
21		'glx_usefont.c',
22		'xm_api.c',
23		]
24    )
25    Export('st_xlib')
26