projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
missing closing bracket broke tex2rtf
[wxWidgets.git]
/
build
/
bakefiles
/
wxwin.py
diff --git
a/build/bakefiles/wxwin.py
b/build/bakefiles/wxwin.py
index 6fc33904385b1c610faa46b7fee1b159e6b7d499..d498c597fb5a4a15b215b778b7aa2ab73f28ac67 100644
(file)
--- a/
build/bakefiles/wxwin.py
+++ b/
build/bakefiles/wxwin.py
@@
-40,10
+40,11
@@
def mk_wxid(id):
# All libs that are part of the main library (i.e. non-contrib):
MAIN_LIBS = ['mono', 'base', 'core', 'adv', 'html', 'xml', 'net',
# All libs that are part of the main library (i.e. non-contrib):
MAIN_LIBS = ['mono', 'base', 'core', 'adv', 'html', 'xml', 'net',
- '
odbc', 'dbgrid', 'xr
c']
+ '
media', 'odbc', 'qa', 'dbgrid', 'xrc', 'aui', 'richtext', 'st
c']
# List of library names/ids for categories with different names:
LIBS_NOGUI = ['xml', 'net', 'odbc']
# List of library names/ids for categories with different names:
LIBS_NOGUI = ['xml', 'net', 'odbc']
-LIBS_GUI = ['core', 'adv', 'html', 'gl', 'dbgrid', 'xrc']
+LIBS_GUI = ['core', 'adv', 'html', 'gl', 'qa', 'dbgrid', 'xrc', 'media',
+ 'aui', 'richtext', 'stc']
# Additional libraries that must be linked in:
EXTRALIBS = {
'gl' : '$(EXTRALIBS_OPENGL)',
# Additional libraries that must be linked in:
EXTRALIBS = {
'gl' : '$(EXTRALIBS_OPENGL)',
@@
-109,11
+110,11
@@
def getVersion():
major = minor = release = None
for l in lines:
if not l.startswith('#define'): continue
major = minor = release = None
for l in lines:
if not l.startswith('#define'): continue
- split
ted
= l.strip().split()
- if split
ted
[0] != '#define': continue
- if len(split
ted
) < 3: continue
- name = split
ted
[1]
- value = split
ted
[2]
+ split
line
= l.strip().split()
+ if split
line
[0] != '#define': continue
+ if len(split
line
) < 3: continue
+ name = split
line
[1]
+ value = split
line
[2]
if value == None: continue
if name == 'wxMAJOR_VERSION': major = int(value)
if name == 'wxMINOR_VERSION': minor = int(value)
if value == None: continue
if name == 'wxMAJOR_VERSION': major = int(value)
if name == 'wxMINOR_VERSION': minor = int(value)
@@
-151,3
+152,7
@@
def headersOnly(files):
def makeDspDependency(lib):
"""Returns suitable entry for <depends-on-dsp> for main libs."""
return '%s:$(nativePaths(WXTOPDIR))build\\msw\\wx_%s.dsp' % (lib,lib)
def makeDspDependency(lib):
"""Returns suitable entry for <depends-on-dsp> for main libs."""
return '%s:$(nativePaths(WXTOPDIR))build\\msw\\wx_%s.dsp' % (lib,lib)
+
+def makeContribDspDependency(lib):
+ """Returns suitable entry for <depends-on-dsp> for contrib libs."""
+ return '%s:$(nativePaths(WXTOPDIR))contrib\\build\\%s\\%s.dsp' % (lib,lib,lib)