glsl2: Add and use new variable mode ir_var_temporary
[mesa/nouveau-pmpeg.git] / src / gallium / targets / egl-swrast / SConscript
blob213e5b3e6cea8d370bf6a5085e1ee00146b55cec
1 #######################################################################
2 # SConscript for egl-swrast target
4 Import('*')
6 if env['platform'] == 'windows':
8     env = env.Clone()
10     env.Append(LIBS = [
11         'gdi32',
12         'user32',
13         'kernel32',
14         'ws2_32',
15     ])
17     drivers = [softpipe]
18     if env['llvm']:
19         drivers += [llvmpipe]
20     drivers += [identity, trace, rbug]
22     env['no_import_lib'] = 1
24     egl_gdi_swrast = env.SharedLibrary(
25         target ='egl_gdi_swrast',
26         source = 'swrast_glue.c',
27         LIBS = st_egl_gdi + ws_gdi + drivers + gallium + egl + env['LIBS'],
28     )
30     env.InstallSharedLibrary(egl_gdi_swrast)