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


Import('*')

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

    env = env.Clone()

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

    ws_xlib = env.ConvenienceLibrary(
        target = 'ws_xlib',
        source = env.ParseSourceList('Makefile.sources', 'C_SOURCES'),
    )
    env.Alias('ws_xlib', ws_xlib)
    Export('ws_xlib')