summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/nvfx/SConscript
blob: 4f57662d5e144b48170a620b2f9dac8c6c1e99f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Import('*')

env = env.Clone()

env.PrependUnique(delete_existing=1, CPPPATH = [
    '#/src/gallium/drivers',
])

nvfx = env.ConvenienceLibrary(
    target = 'nvfx',
    source = env.ParserSourceList('Makefile.sources', 'C_SOURCES')
    )

Export('nvfx')