blob: 0bc519759d06b882c7092d2e0dbf6f98bab8e066 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Import('*')
if env['platform'] not in ['windows']:
Return()
env = env.Clone()
glsl = env.StaticLibrary(
target = 'glsl',
source = [
'sl_pp_purify.c',
'sl_pp_token.c',
'sl_pp_version.c',
],
)
Export('glsl')
|