lib: restore dll loader support

This commit is contained in:
mittorn
2020-01-19 07:38:37 +07:00
parent 22dc5b7416
commit bbd033c254
7 changed files with 29 additions and 22 deletions

View File

@@ -69,6 +69,7 @@ def configure(conf):
conf.define_cond('XASH_STATIC_LIBS', conf.env.STATIC_LINKING)
conf.define_cond('XASH_CUSTOM_SWAP', conf.options.CUSTOM_SWAP)
conf.define_cond('XASH_DLL_LOADER', conf.options.DLLEMU)
conf.define_cond('SINGLE_BINARY', conf.env.SINGLE_BINARY)
conf.define_cond('XASH_NO_ASYNC_NS_RESOLVE', conf.options.NO_ASYNC_RESOLVE)
conf.define_cond('XASH_USE_SELECT', conf.options.USE_SELECT or conf.options.DEDICATED)
@@ -79,7 +80,7 @@ def configure(conf):
def build(bld):
is_cxx_link = False
libs = [ 'public' ]
libs = [ 'public', 'dllemu' ]
source = bld.path.ant_glob([
'common/*.c',
'common/imagelib/*.c',