mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 18:10:11 +01:00
15 lines
215 B
Python
15 lines
215 B
Python
Import('env')
|
|
|
|
env = env.Clone()
|
|
|
|
util = env.StaticLibrary(
|
|
target = ['util'],
|
|
source = [
|
|
'readtex.c',
|
|
'trackball.c',
|
|
'showbuffer.c',
|
|
'shaderutil.c',
|
|
],
|
|
)
|
|
|
|
Export('util')
|