mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2025-01-10 10:25:37 +01:00
wscript: add zlib library
This commit is contained in:
parent
01a33dcf7e
commit
9b68b0c1e2
@ -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([
|
||||
|
Loading…
Reference in New Issue
Block a user