Files
third_party_mesa3d/progs/gallium/raw/SConscript
Keith Whitwell db5c2235d1 gallium: new raw gallium interface to support standalone tests
Provides basic window system integration behind a simple interface,
allowing tests to be written without dependency on either the driver
or window system.

With a lot of work, could turn into something like glut for gallium.
2010-03-28 10:42:38 -07:00

18 lines
220 B
Python

Import('*')
env = env.Clone()
env.Prepend(LIBPATH = [graw.dir])
env.Prepend(LIBS = [graw.name])
progs = [
'clear'
]
for prog in progs:
env.Program(
target = prog,
source = prog + '.c',
)