blob: 10c79c4434893186973e50d44314c63bbed73bb7 [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')
Jose Fonsecaffcc00c2016-04-13 18:19:52 +010025SConscript('SConscript.nir')