Tizen 2.0 Release
[profile/ivi/osmesa.git] / src / gallium / winsys / radeon / drm / SConscript
1 Import('*')
2
3 env = env.Clone()
4
5 radeon_sources = [
6     'radeon_drm_bo.c',
7     'radeon_drm_cs.c',
8     'radeon_drm_winsys.c',
9 ]
10
11 try:
12     env.ParseConfig('pkg-config --cflags libdrm')
13 except:
14     print 'warning: not building Gallium Radeon'
15     Return()
16
17 radeonwinsys = env.ConvenienceLibrary(
18     target ='radeonwinsys',
19     source = radeon_sources,
20 )
21
22 Export('radeonwinsys')