
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.
18 lines
220 B
Python
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',
|
|
)
|
|
|