From: Václav Slavík Date: Fri, 12 Sep 2003 21:09:11 +0000 (+0000) Subject: .dsw files for samples must not contain dependencies between core libraries, otherwis... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/4b289591ff4fb45c2e7ec0b3d513512fd35bcb74 .dsw files for samples must not contain dependencies between core libraries, otherwise static libraries will be linked into other static libs git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23551 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/build/bakefiles/wxwin.py b/build/bakefiles/wxwin.py index bb985a1a39..3aa425cd0a 100644 --- a/build/bakefiles/wxwin.py +++ b/build/bakefiles/wxwin.py @@ -141,18 +141,4 @@ def headersOnly(files): def makeDspDependency(lib): """Returns suitable entry for for main libs.""" - - DEPS_TABLE = { - 'core':'base', - 'adv':'core', - 'html':'core', - 'xml':'base', - 'net':'base', - 'odbc':'base', - 'dbgrid':'adv,odbc', - } - if lib in DEPS_TABLE: - deps = ':%s' % DEPS_TABLE[lib] - else: - deps = '' - return '%s:$(nativePaths(WXTOPDIR))build\msw\wx_%s.dsp%s' % (lib,lib,deps) + return '%s:$(nativePaths(WXTOPDIR))build\msw\wx_%s.dsp' % (lib,lib)