summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/xorg/SConscript
blob: 1768f701e480c1d95d3e6e06f6bf5850e5692012 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#######################################################################
# SConscript for xorg state_tracker

Import('*')

env = env.Clone()

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

env.PkgUseModules(['DRM', 'XORG'])

if env['HAVE_KMS']:
    env.Append(CPPDEFINES = ['HAVE_LIBKMS'])
    env.PkgUseModules(['KMS'])

conf = env.Configure()

if conf.CheckHeader('X11/extensions/dpmsconst.h'):
    env.Append(CPPDEFINES = [('HAVE_XEXTPROTO_71', '1')])

conf.Finish()

sources = [
    'xorg_composite.c',
    'xorg_crtc.c',
    'xorg_dri2.c',
    'xorg_driver.c',
    'xorg_exa.c',
    'xorg_exa_tgsi.c',
    'xorg_output.c',
    'xorg_renderer.c',
    'xorg_xv.c',
    'xorg_xvmc.c',
]

st_xorg = env.ConvenienceLibrary(
    target = 'st_xorg',
    source = sources,
)
Export('st_xorg')