summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/drm/radeon/core/SConscript
blob: 2ad68e403fe359d55c9c5a9a3556c20d3dad1e39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Import('*')

env = drienv.Clone()

radeon_sources = [
    'radeon_buffer.c',
    'radeon_drm.c',
    'radeon_r300.c',
    'radeon_winsys_softpipe.c',
]

env.Append(CPPPATH = '#/src/gallium/drivers/r300')

radeonwinsys = env.ConvenienceLibrary(
    target ='radeonwinsys',
    source = radeon_sources,
)

Export('radeonwinsys')