The richtext code is now in it's own lib/DLL

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39954 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-07-03 17:23:54 +00:00
parent a3f6a2cd3a
commit b9db15f1e9
2 changed files with 2 additions and 3 deletions

View File

@@ -698,7 +698,6 @@ if os.name == 'nt':
makeLibName('core')[0],
makeLibName('adv')[0],
makeLibName('html')[0],
makeLibName('xrc')[0],
]
libs = libs + ['kernel32', 'user32', 'gdi32', 'comdlg32',

View File

@@ -453,7 +453,7 @@ ext = Extension('_xrc',
define_macros = defines,
library_dirs = libdirs,
libraries = libs,
libraries = libs + makeLibName('xrc'),
extra_compile_args = cflags,
extra_link_args = lflags,
@@ -468,7 +468,7 @@ ext = Extension('_richtext', swig_sources,
include_dirs = includes,
define_macros = defines,
library_dirs = libdirs,
libraries = libs,
libraries = libs + makeLibName('richtext'),
extra_compile_args = cflags,
extra_link_args = lflags,
**depends