wscript: enable DBGHELP for Win32
This commit is contained in:
parent
ca501c0378
commit
85960b2c90
1 changed files with 3 additions and 1 deletions
|
@ -48,6 +48,8 @@ def configure(conf):
|
||||||
conf.check( lib='SHELL32' )
|
conf.check( lib='SHELL32' )
|
||||||
conf.check( lib='GDI32' )
|
conf.check( lib='GDI32' )
|
||||||
conf.check( lib='ADVAPI32' )
|
conf.check( lib='ADVAPI32' )
|
||||||
|
conf.check( lib='DBGHELP' )
|
||||||
|
conf.env.append_unique('DEFINES', 'DBGHELP')
|
||||||
|
|
||||||
def get_subproject_name(ctx):
|
def get_subproject_name(ctx):
|
||||||
return os.path.basename(os.path.realpath(str(ctx.path)))
|
return os.path.basename(os.path.realpath(str(ctx.path)))
|
||||||
|
@ -63,7 +65,7 @@ def build(bld):
|
||||||
if bld.env.DEST_OS != 'win32':
|
if bld.env.DEST_OS != 'win32':
|
||||||
libs += [ 'DL', 'M', 'PTHREAD' ]
|
libs += [ 'DL', 'M', 'PTHREAD' ]
|
||||||
else:
|
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(['platform/win32/*.c'])
|
||||||
|
|
||||||
source += bld.path.ant_glob([
|
source += bld.path.ant_glob([
|
||||||
|
|
Loading…
Add table
Reference in a new issue