summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/SConscript
blob: 6488bb36513ca22776be118125bf9ad8c0d14d39 (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
44
45
46
47
48
49
50
Import('*')

from sys import executable as python_cmd

env.Append(CPPPATH = [
    '#src',
    'indices',
    'util',
    '#src/compiler/nir',
    '../../compiler/nir',
])

env = env.Clone()

env.MSVC2013Compat()

env.CodeGenerate(
    target = 'indices/u_indices_gen.c',
    script = 'indices/u_indices_gen.py',
    source = [],
    command = python_cmd + ' $SCRIPT > $TARGET'
)

env.CodeGenerate(
    target = 'indices/u_unfilled_gen.c',
    script = 'indices/u_unfilled_gen.py',
    source = [],
    command = python_cmd + ' $SCRIPT > $TARGET'
)

source = env.ParseSourceList('Makefile.sources', [
    'C_SOURCES',
    'NIR_SOURCES',
    'VL_STUB_SOURCES',
    'GENERATED_SOURCES'
])

if env['llvm']:
    source += env.ParseSourceList('Makefile.sources', [
        'GALLIVM_SOURCES',
    ])

gallium = env.ConvenienceLibrary(
    target = 'gallium',
    source = source,
)

env.Alias('gallium', gallium)

Export('gallium')