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