wscript: add zlib library

This commit is contained in:
Mr0maks 2019-05-30 09:38:53 +05:00
parent 01a33dcf7e
commit 9b68b0c1e2
1 changed files with 6 additions and 0 deletions

View File

@ -50,6 +50,9 @@ def configure(conf):
conf.env.append_unique('DEFINES', 'DBGHELP')
conf.env.append_unique('DEFINES', 'PSAPI_VERSION=1')
conf.check_cc(header_name='zlib.h', uselib_store='ZLIB')
conf.check_cc(lib='z', uselib_store='ZLIB')
def build(bld):
libs = [ 'public' ]
source = bld.path.ant_glob([
@ -78,6 +81,9 @@ def build(bld):
libs += ['LOG', 'EGL', 'ANDROID']
source += bld.path.ant_glob(['platform/android/*.cpp', 'platform/android/*.c'])
# Add zlib for all builds
libs += [ 'ZLIB' ]
# add client files
if not bld.env.DEDICATED:
source += bld.path.ant_glob([