util: Move the open-addressing linear-probing hash_table to src/util.
[mesa.git] / src / util / SConscript
1 import common
2
3 Import('*')
4
5 from sys import executable as python_cmd
6
7 env = env.Clone()
8
9 env.Prepend(CPPPATH = [
10 '#include',
11 '#src/mapi',
12 '#src/mesa',
13 '#src/util',
14 ])
15
16 # parse Makefile.sources
17 source_lists = env.ParseSourceList('Makefile.sources')
18
19 mesautil_sources = source_lists['MESA_UTIL_FILES']
20
21 mesautil = env.ConvenienceLibrary(
22 target = 'mesautil',
23 source = mesautil_sources,
24 )
25
26 env.Alias('mesautil', mesautil)
27 Export('mesautil')