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

if env['platform'] not in ['linux']:
    Return()

env = env.Clone()

env.AppendUnique(CPPPATH = [
    '#/src/gallium/winsys/g3dvl',
])

XvMCapi = env.StaticLibrary(
    target = 'XvMCapi',
    source = [
        'block.c',
        'surface.c',
        'context.c',
        'subpicture.c',
        'attributes.c',
    ],
)