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

env = env.Clone()
env.Append(CPPPATH = [
    '#/include', 
    '#/src/mesa',
])

r600 = env.ConvenienceLibrary(
    target = 'r600',
    source = [
        'r600_buffer.c',
        'r600_context.c',
        'r600_draw.c',
        'r600_query.c',
        'r600_screen.c',
        'r600_state.c',
        'r600_texture.c',
    ])

Export('r600')