mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-02 09:30:11 +01:00
36 lines
535 B
Python
36 lines
535 B
Python
Import('*')
|
|
|
|
env = env.Clone()
|
|
|
|
if env['platform'] == 'windows':
|
|
env.PrependUnique(LIBS = [
|
|
'user32',
|
|
])
|
|
|
|
env.Prepend(LIBS = [glsl, glslcl])
|
|
|
|
env.Program(
|
|
target = 'purify',
|
|
source = ['purify.c'],
|
|
)
|
|
|
|
env.Program(
|
|
target = 'tokenise',
|
|
source = ['tokenise.c'],
|
|
)
|
|
|
|
env.Program(
|
|
target = 'version',
|
|
source = ['version.c'],
|
|
)
|
|
|
|
env.Program(
|
|
target = 'process',
|
|
source = ['process.c'],
|
|
)
|
|
|
|
glsl_compile = env.Program(
|
|
target = 'compile',
|
|
source = ['compile.c'],
|
|
)
|
|
Export('glsl_compile')
|