Install headers to the new location, use the new wx-config options

instead of building the wx-{toolchain}-config name myself, incremented
the version number.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28398 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-07-22 18:15:18 +00:00
parent 2aa0b8c146
commit e9019d1ce3
2 changed files with 22 additions and 25 deletions

View File

@@ -435,7 +435,7 @@ if BUILD_STC:
if os.name == 'nt':
STC_H = opj(WXDIR, 'contrib', 'include/wx/stc')
else:
STC_H = opj(WXPREFIX, 'include/wx/stc')
STC_H = opj(WXPREFIX, 'include/wx-%d.%d/wx/stc' % (VER_MAJOR, VER_MINOR))
## NOTE: need to add something like this to the stc.bkl...
@@ -671,8 +671,9 @@ else:
glob.glob(opj("src/_*.py")) + \
glob.glob(opj("src/*.swg"))
HEADERS = zip(h_files, ["/include/wx/wxPython"]*len(h_files)) + \
zip(i_files, ["/include/wx/wxPython/i_files"]*len(i_files))
HEADERS = zip(h_files, ["/wxPython"]*len(h_files)) + \
zip(i_files, ["/wxPython/i_files"]*len(i_files))
#----------------------------------------------------------------------
# Do the Setup/Build/Install/Whatever