glsl: Add a purify command-line tool.

This commit is contained in:
Michal Krol
2009-06-11 18:56:10 +02:00
parent 0bbf59c305
commit 121769eeb3
4 changed files with 113 additions and 8 deletions
+18
View File
@@ -0,0 +1,18 @@
Import('*')
if env['platform'] not in ['windows']:
Return()
env = env.Clone()
if env['platform'] == 'windows':
env.PrependUnique(LIBS = [
'user32',
])
env.Prepend(LIBS = [glsl])
env.Program(
target = 'purify',
source = ['purify.c'],
)