aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/winsys/sw/hgl/SConscript
blob: 7755b00ea8c99917fb35792a711cf72748c4485c (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
#######################################################################
# SConscript for haiku winsys


Import('*')

if env['platform'] in ('haiku'):

    env = env.Clone()

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

    ws_haiku = env.ConvenienceLibrary(
        target = 'ws_haiku',
        source = [
           'hgl_sw_winsys.c',
        ]
    )
    Export('ws_haiku')