git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12128
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
# flags and values that affect this script
#----------------------------------------------------------------------
# flags and values that affect this script
#----------------------------------------------------------------------
DESCRIPTION = "Cross platform GUI toolkit for Python"
AUTHOR = "Robin Dunn"
AUTHOR_EMAIL = "Robin Dunn <robin@alldunn.com>"
DESCRIPTION = "Cross platform GUI toolkit for Python"
AUTHOR = "Robin Dunn"
AUTHOR_EMAIL = "Robin Dunn <robin@alldunn.com>"
# wxWindows must have been built with /MD, not /MDd
# (using FINAL=hybrid will do it.)
# wxWindows must have been built with /MD, not /MDd
# (using FINAL=hybrid will do it.)
-WXDLLVER = '23_2' # Version part of DLL name
+WXDLLVER = '232' # Version part of DLL name
#----------------------------------------------------------------------
#----------------------------------------------------------------------
path = apply(os.path.join, args)
return os.path.normpath(path)
path = apply(os.path.join, args)
return os.path.normpath(path)
+def libFlag():
+ if FINAL:
+ return ''
+ elif HYBRID:
+ return 'h'
+ else:
+ return 'd'
+
+
#----------------------------------------------------------------------
# Some other globals
#----------------------------------------------------------------------
#----------------------------------------------------------------------
# Some other globals
#----------------------------------------------------------------------
FINAL = 0
includes = ['src',
FINAL = 0
includes = ['src',
+ opj(WXDIR, 'lib', 'mswdll' + libFlag()),
defines.append( ('__WXDEBUG__', None) )
libdirs = [opj(WXDIR, 'lib'), 'build\\ilib']
defines.append( ('__WXDEBUG__', None) )
libdirs = [opj(WXDIR, 'lib'), 'build\\ilib']
-
- if FINAL:
- wxdll = 'wx' + WXDLLVER
- elif HYBRID:
- wxdll = 'wx' + WXDLLVER + 'h'
- else:
- wxdll = 'wx' + WXDLLVER + 'd'
-
-
+ wxdll = 'wxmsw' + WXDLLVER + libFlag()
if bcpp_compiling:
libs = ['wx'+WXBCPPLIBVER]
if bcpp_compiling:
libs = ['wx'+WXBCPPLIBVER]