blob: 2af6153b4c7f31864eb4babb2b7b5d2c1aca6e51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#######################################################################
# SConscript for xlib winsys
Import('*')
if env['platform'] == 'linux':
env = env.Clone()
env.Append(CPPPATH = [
'#/src/gallium/include',
'#/src/gallium/auxiliary',
'#/src/gallium/drivers',
])
ws_xlib = env.ConvenienceLibrary(
target = 'ws_xlib',
source = [
'xlib_sw_winsys.c',
]
)
Export('ws_xlib')
|