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

env = env.Clone()

radeon_sources = [
    'radeon_drm_bo.c',
    'radeon_drm_cs.c',
    'radeon_drm_winsys.c',
]

env.PkgUseModules('DRM')

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

Export('radeonwinsys')