mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-21 05:00:09 +01:00
23 lines
376 B
Text
23 lines
376 B
Text
|
|
Import('*')
|
||
|
|
|
||
|
|
env = env.Clone()
|
||
|
|
|
||
|
|
env.MSVC2013Compat()
|
||
|
|
|
||
|
|
env.Prepend(CPPPATH = [
|
||
|
|
'#include',
|
||
|
|
'#src',
|
||
|
|
'#src/mapi',
|
||
|
|
'#src/mesa',
|
||
|
|
'#src/gallium/include',
|
||
|
|
'#src/gallium/auxiliary',
|
||
|
|
])
|
||
|
|
|
||
|
|
sources = env.ParseSourceList('Makefile.sources', 'LIBCOMPILER_FILES')
|
||
|
|
|
||
|
|
compiler = env.ConvenienceLibrary(
|
||
|
|
target = 'compiler',
|
||
|
|
source = sources
|
||
|
|
)
|
||
|
|
Export('compiler')
|