summaryrefslogtreecommitdiff
path: root/src/gallium/targets/dri-radeong/SConscript
blob: 239d29ace189378e2dc4843b39d048261f9d32d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Import('*')

if not 'r300' in env['drivers']:
    print 'warning: r300 pipe driver not built skipping radeong_dri.so'
    Return()

env = drienv.Clone()

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

drivers = r300 + trace + softpipe

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