progs: Get more samples building on windows.

This commit is contained in:
José Fonseca
2009-02-01 12:00:07 +00:00
parent 7062b7c7cb
commit 9aa73cfae8
11 changed files with 105 additions and 72 deletions

15
progs/util/SConscript Normal file
View File

@@ -0,0 +1,15 @@
Import('env')
env = env.Clone()
util = env.StaticLibrary(
target = ['util'],
source = [
'readtex.c',
'trackball.c',
'showbuffer.c',
'shaderutil.c',
],
)
Export('util')