summaryrefslogtreecommitdiff
path: root/src/gallium/targets/graw-gdi/SConscript
blob: 352efe95d09f0ca4c0b9fd4399c9955e576edc94 (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
43
#######################################################################
# SConscript for graw-gdi

Import('*')

env = env.Clone()

env.Append(CPPPATH = [
    '#src/gallium/winsys/sw',
])

env.Prepend(LIBS = [
    gallium,
    'gdi32',
    'user32',
    'ws2_32',
])

sources = [
    'graw_gdi.c',
    graw_util,
]

if True:
    env.Append(CPPDEFINES = ['GALLIUM_TRACE', 'GALLIUM_RBUG', 'GALLIUM_GALAHAD', 'GALLIUM_SOFTPIPE'])
    env.Prepend(LIBS = [trace, rbug, galahad, softpipe])

if env['llvm']:
    env.Append(CPPDEFINES = 'GALLIUM_LLVMPIPE')
    env.Prepend(LIBS = [llvmpipe])

graw = env.SharedLibrary(
    target = 'graw',
    source = sources,
    LIBS = ws_gdi + env['LIBS'],
)

if env['platform'] == 'windows':
    graw = env.FindIxes(graw, 'LIBPREFIX', 'LIBSUFFIX')
else:
    graw = env.FindIxes(graw, 'SHLIBPREFIX', 'SHLIBSUFFIX')

env.Alias('graw-gdi', graw)