Add wxHtml classes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@72851 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2012-11-01 22:50:37 +00:00
parent aac11a80c2
commit fbda53cbe4
10 changed files with 506 additions and 0 deletions

View File

@@ -199,6 +199,21 @@ extensions.append(ext)
cfg.CLEANUP.append(opj(cfg.PKGDIR, 'stc.py'))
etg = loadETG('etg/_html.py')
etgDepends = etg.DEPENDS + etg.OTHERDEPS
ext = Extension('_html', getEtgSipCppFiles(etg),
depends = getEtgSipHeaders(etg),
include_dirs = cfg.includes,
define_macros = cfg.defines,
library_dirs = cfg.libdirs,
libraries = cfg.libs + cfg.makeLibName('html', True),
extra_compile_args = cfg.cflags,
extra_link_args = cfg.lflags,
)
extensions.append(ext)
cfg.CLEANUP.append(opj(cfg.PKGDIR, 'html.py'))
#----------------------------------------------------------------------
if __name__ == '__main__':