summaryrefslogtreecommitdiffstats
path: root/src/gallium/winsys/r600/drm/SConscript
blob: ca51b52ea7233892301924de5f3645c3587152df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Import('*')

env = env.Clone()

r600_sources = [
    'evergreen_hw_context.c',
    'radeon_pciid.c',
    'r600_bo.c',
    'r600_drm.c',
    'r600_hw_context.c',
]

env.PkgUseModules('DRM_RADEON')

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

r600winsys = env.ConvenienceLibrary(
    target ='r600winsys',
    source = r600_sources,
)

Export('r600winsys')