Move Zlib and Hashing libs to third_party directory

This commit is contained in:
Arkshine
2015-03-10 12:08:26 +01:00
parent 014120e73e
commit c03bb3693e
41 changed files with 1 additions and 1 deletions

28
third_party/zlib/AMBuilder vendored Normal file
View File

@ -0,0 +1,28 @@
# vim: sts=2 ts=8 sw=2 tw=99 et ft=python:
import os, platform
lib = builder.compiler.StaticLibrary('zlib')
lib.compiler.includes += [
os.path.join(builder.sourcePath, 'third_party', 'zlib'),
]
lib.sources += [
'adler32.c',
'compress.c',
'crc32.c',
'deflate.c',
'gzclose.c',
'gzlib.c',
'gzread.c',
'gzwrite.c',
'infback.c',
'inffast.c',
'inflate.c',
'inftrees.c',
'trees.c',
'uncompr.c',
'zutil.c',
]
rvalue = builder.Add(lib)