blob: 8ad2466291de73a3ad6c71804ca5ade442c9057c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Import('env')
env = env.Clone()
util = env.StaticLibrary(
target = ['util'],
source = [
'readtex.c',
'trackball.c',
'showbuffer.c',
'shaderutil.c',
],
)
Export('util')
|