summaryrefslogtreecommitdiffstats
path: root/src/gallium/winsys/sw/hgl/SConscript
blob: e88125721ab82de0449d75d2b690c5340750a717 (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
#######################################################################
# 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',
    ])

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