git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22302
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
# 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 = '25' # Version part of wxWindows DLL name
+ # Version part of wxWindows LIB/DLL names
+WXDLLVER = '%d%d' % (VER_MAJOR, VER_MINOR)
#----------------------------------------------------------------------
#----------------------------------------------------------------------
if os.name == 'posix':
libname = '%s_%s-%s' % (WXBASENAME, name, WXRELEASE)
else:
if os.name == 'posix':
libname = '%s_%s-%s' % (WXBASENAME, name, WXRELEASE)
else:
- libname = "FUBAR"
- #raise NotImplementedError
+ libname = 'wxmsw%s%s_%s' % (WXDLLVER, libFlag(), name)
msg('Preparing GLCANVAS...')
location = 'contrib/glcanvas'
swig_files = ['glcanvas.i']
msg('Preparing GLCANVAS...')
location = 'contrib/glcanvas'
swig_files = ['glcanvas.i']
swig_sources = run_swig(swig_files, location, GENDIR, PKGDIR,
USE_SWIG, swig_force, swig_args, swig_deps)
swig_sources = run_swig(swig_files, location, GENDIR, PKGDIR,
USE_SWIG, swig_force, swig_args, swig_deps)
gl_lflags = gl_config.split() + lflags
gl_libs = libs
else:
gl_lflags = gl_config.split() + lflags
gl_libs = libs
else:
- other_sources = [opj(location, 'msw/myglcanvas.cpp')]
- gl_libs = libs + ['opengl32', 'glu32']
+ gl_libs = libs + ['opengl32', 'glu32'] + makeLibName('gl')
gl_lflags = lflags
ext = Extension('glcanvasc',
gl_lflags = lflags
ext = Extension('glcanvasc',
- swig_sources + other_sources,
include_dirs = includes,
define_macros = defines,
include_dirs = includes,
define_macros = defines,