From: Hugo J. <hug...@sp...> - 2006-03-27 00:55:28
|
can someone tell me, or point me in the right direction for documentation as to how to set up my development environment so that the migration from completed code to class submission could be as painless as possible. In particular with regard to include files of potential library candidates. i.e. how do i set things up so that to my application headers for library classes I've developed are included with the regular library include of: #include <wx/wx.h> Currently I've been reduced to code of the following sort: #include <wx/wx.h> #include "wxDropPanel.h" #include "wxBitmapWindow.h" Is there some pre-existing environment setting that allows me to put the headers for my own wx classes in one place and in my application code? What other thoughts or concerns should I consider? I've read the maintainers guide which hints or provides notes on other aspects like using a bakefile and autoconf, but it would be nice if there were some docs or info along the lines of: "So you've done foolin' around with wxWidgets and now you want to set up your environment so you're coding like the pro's". :) Any thoughts or advice greatly appreciated. |