mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-12-16 01:30:07 +01:00
MSW build fix
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@73087 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -454,15 +454,16 @@ class Configuration(object):
|
||||
return file_list
|
||||
|
||||
|
||||
def makeLibName(self, name, checkMonolithic=False):
|
||||
def makeLibName(self, name, checkMonolithic=False, isMSWBase=False):
|
||||
if checkMonolithic and self.MONOLITHIC:
|
||||
return []
|
||||
basename = 'base' if isMSWBase else 'msw'
|
||||
if os.name == 'posix' or self.COMPILER == 'mingw32':
|
||||
libname = '%s_%s-%s' % (self.WXBASENAME, name, self.WXRELEASE)
|
||||
elif name:
|
||||
libname = 'wxmsw%s%s_%s' % (self.WXDLLVER, self.libFlag(), name)
|
||||
libname = 'wx%s%s%s_%s' % (basename, self.WXDLLVER, self.libFlag(), name)
|
||||
else:
|
||||
libname = 'wxmsw%s%s' % (self.WXDLLVER, self.libFlag())
|
||||
libname = 'wx%s%s%s' % (basename, self.WXDLLVER, self.libFlag())
|
||||
return [libname]
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user