mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-23 02:15:55 +01:00
wscript: enable DBGHELP for Win32
This commit is contained in:
parent
ca501c0378
commit
85960b2c90
@ -48,6 +48,8 @@ def configure(conf):
|
||||
conf.check( lib='SHELL32' )
|
||||
conf.check( lib='GDI32' )
|
||||
conf.check( lib='ADVAPI32' )
|
||||
conf.check( lib='DBGHELP' )
|
||||
conf.env.append_unique('DEFINES', 'DBGHELP')
|
||||
|
||||
def get_subproject_name(ctx):
|
||||
return os.path.basename(os.path.realpath(str(ctx.path)))
|
||||
@ -63,7 +65,7 @@ def build(bld):
|
||||
if bld.env.DEST_OS != 'win32':
|
||||
libs += [ 'DL', 'M', 'PTHREAD' ]
|
||||
else:
|
||||
libs += ['USER32', 'SHELL32', 'GDI32', 'ADVAPI32']
|
||||
libs += ['USER32', 'SHELL32', 'GDI32', 'ADVAPI32', 'DBGHELP']
|
||||
source += bld.path.ant_glob(['platform/win32/*.c'])
|
||||
|
||||
source += bld.path.ant_glob([
|
||||
|
Loading…
Reference in New Issue
Block a user