summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/sw/xlib/SConscript
blob: df01a9ec2bfd0524afd9537fc14bcecaf499f4ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#######################################################################
# SConscript for xlib winsys


Import('*')

if env['platform'] in ('cygwin', 'linux'):

    env = env.Clone()

    env.Append(CPPPATH = [
        '#/src/gallium/include',
        '#/src/gallium/auxiliary',
        '#/src/gallium/drivers',
    ])

    ws_xlib = env.ConvenienceLibrary(
        target = 'ws_xlib',
        source = [
           'xlib_sw_winsys.c',
        ]
    )
    Export('ws_xlib')