Minor doc typos removed; compilation improved for VC++ 4.x

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5838 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2000-02-04 17:08:11 +00:00
parent d2fdd8d2af
commit a42b93aaad
7 changed files with 89 additions and 34 deletions

View File

@@ -391,6 +391,24 @@ void MyApp::GenerateSamples(const wxString& dir)
wxMessageBox(msg);
}
// hhp2cached
project.SetIncludeDirs(wxStringList("../../include", 0));
project.SetResourceIncludeDirs(wxStringList("../../include", 0));
project.SetLibDirs(wxStringList("../../lib", 0));
project.SetDebugLibDirs(wxStringList("../../src/Debug", "../../src/jpeg/Debug", "../../src/tiff/Debug", 0));
project.SetReleaseLibDirs(wxStringList("../../src/Release", "../../src/jpeg/Release", "../../src/tiff/Release", 0));
project.SetProjectName("hhp2cachedVC");
project.SetTargetName("hhp2cached");
project.SetProjectPath(dir + wxString("/utils/hhp2cached"));
project.SetSourceFiles(wxStringList("hhp2cached.cpp", 0));
if (!project.GenerateVCProject())
{
wxString msg("Could not generate hhp2cached project");
wxMessageBox(msg);
}
// wxTreeLayout sample
project.SetIncludeDirs(wxStringList("../../../include", 0));