mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-01 22:40:09 +01:00
14 lines
197 B
Python
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')
|