a97a955b92
Reviewed-by: Brian Paul <brianp@vmware.com> Reviewed-by: Roland Scheidegger <sroland@vmware.com>
15 lines
230 B
Python
15 lines
230 B
Python
Import('*')
|
|
|
|
env = env.Clone()
|
|
|
|
env.MSVC2013Compat()
|
|
|
|
softpipe = env.ConvenienceLibrary(
|
|
target = 'softpipe',
|
|
source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
|
|
)
|
|
|
|
env.Alias('softpipe', softpipe)
|
|
|
|
Export('softpipe')
|