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

env = drienv.Clone()

env.ParseConfig('pkg-config --cflags --libs libdrm_radeon')

drivers = [
    trace,
    softpipe,
    r300
]

env.SharedLibrary(
    target ='radeon_dri.so',
    source = COMMON_GALLIUM_SOURCES,
    LIBS = st_dri + radeonwinsys + mesa + drivers + auxiliaries + env['LIBS'],
)