mesa/src/glsl/pp/SConscript
2009-09-07 10:11:30 +02:00

14 lines
197 B
Python

Import('*')
if env['platform'] not in ['windows']:
Return()
env = env.Clone()
glsl = env.StaticLibrary(
target = 'glsl',
source = [
'sl_pp_purify.c',
],
)
Export('glsl')