]> git.cworth.org Git - apitrace/blob - zlib/SConscript
Use the process ID as process name when /proc/self/exe can't be read.
[apitrace] / zlib / SConscript
1 Import('*')
2
3 zenv = env.Clone()
4
5 zlib = zenv.StaticLibrary(
6         target = 'zlib',
7         source = [
8         'adler32.c',
9         'compress.c',
10         'crc32.c',
11         'gzio.c',
12         'uncompr.c',
13         'deflate.c',
14         'trees.c',
15         'zutil.c',
16         'inflate.c',
17         'infback.c',
18         'inftrees.c',
19         'inffast.c',
20         ],
21 )
22
23 env.Append(CPPPATH = ['#zlib'])
24 env.Prepend(LIBS = [zlib])
25