.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
This commit is contained in:
@@ -141,18 +141,4 @@ def headersOnly(files):
|
||||
|
||||
def makeDspDependency(lib):
|
||||
"""Returns suitable entry for <depends-on-dsp> 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)
|
||||
|
Reference in New Issue
Block a user