blob: 8ae53b676ce089a017567257c168a18bae6e9bb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Import('*')
env = env.Clone()
env.MSVC2013Compat()
softpipe = env.ConvenienceLibrary(
target = 'softpipe',
source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
)
env.Alias('softpipe', softpipe)
Export('softpipe')
|