fc8ccd5b8c
Also switch existing shebangs to "better" /usr/bin/env python.
12 lines
266 B
Python
12 lines
266 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
if env['BUILDERS'].has_key('GLSL120GLES'):
|
|
env.GLSL120GLES('material.glsl');
|
|
env.GLSL120GLES('canvas.glsl');
|
|
env.GLSL120GLES('canvas_shadow.glsl');
|
|
env.GLSL120GLES('blur.glsl');
|
|
env.GLSL120GLES('copy.glsl');
|
|
|
|
Export('env')
|