glsl2: Add and use new variable mode ir_var_temporary
[mesa/nouveau-pmpeg.git] / src / gallium / targets / egl-apis / SConscript
blob0ca3d1fb9e5f272501bd1b1714aa71e343b533ce
1 #######################################################################
2 # SConscript for egl-apis target
4 Import('*')
6 if env['platform'] == 'windows':
8     env = env.Clone()
10     env.Append(CPPPATH = [
11             '#/src/gallium/state_trackers/vega',
12     ])
14     env.Append(LIBS = [
15         'gdi32',
16         'user32',
17         'kernel32',
18         'ws2_32',
19     ])
21     env['no_import_lib'] = 1
23     api_libs = {
24         'OpenVG': vgapi + st_vega,
25     }
27     for name in api_libs.keys():
28         api = env.SharedLibrary(
29             target = 'api_' + name,
30             source = ['api_' + name + '.c'],
31             LIBS = api_libs[name] + gallium + env['LIBS'],
32         )
33         env.InstallSharedLibrary(api)