blob: 8969d8219846c7df720e19777eae08506c37c1d0 [file] [log] [blame]
Emil Velikov1a882fd2016-01-18 10:47:13 +02001Import('*')
2
3env = env.Clone()
4
5env.MSVC2013Compat()
6
7env.Prepend(CPPPATH = [
8 '#include',
9 '#src',
10 '#src/mapi',
11 '#src/mesa',
12 '#src/gallium/include',
13 '#src/gallium/auxiliary',
14])
15
16sources = env.ParseSourceList('Makefile.sources', 'LIBCOMPILER_FILES')
17
18compiler = env.ConvenienceLibrary(
19 target = 'compiler',
20 source = sources
21)
22Export('compiler')
Emil Velikoveb636402016-01-18 12:16:48 +020023
Emil Velikovabf70882016-04-05 14:05:19 +010024SConscript('SConscript.glsl')