Check for SYS/GL during library init. Reason is that
[AROS.git] / workbench / libs / mesa / src / gallium / drivers / nvfx / SConscript
blobf1041e7763345b7bd9519331587f39f973b691a6
1 Import('*')
3 env = env.Clone()
5 env.PrependUnique(delete_existing=1, CPPPATH = [
6     '#/src/gallium/drivers',
7 ])
9 nvfx = env.ConvenienceLibrary(
10     target = 'nvfx',
11     source = [
12         'nv04_2d.c',
13         'nvfx_buffer.c',
14         'nvfx_context.c',
15         'nvfx_clear.c',
16         'nvfx_draw.c',
17         'nvfx_fragprog.c',
18         'nvfx_fragtex.c',
19         'nv30_fragtex.c',
20         'nv40_fragtex.c',
21         'nvfx_miptree.c',
22         'nvfx_push.c',
23         'nvfx_query.c',
24         'nvfx_resource.c',
25         'nvfx_screen.c',
26         'nvfx_state.c',
27         'nvfx_state_emit.c',
28         'nvfx_state_fb.c',
29         'nvfx_surface.c',
30         'nvfx_transfer.c',
31         'nvfx_vbo.c',
32         'nvfx_vertprog.c',
33     ])
35 Export('nvfx')