From: Francesco M. <f18...@ya...> - 2005-08-03 10:11:21
|
Hi, I would like to inform all maintainers using wxCode bakefile build system that I recently did some changes, in order to make the eventual integration of a wxCode component in wxWidgets easier, to the bakefiles. I updated all docs (in particular the bakefile templates in wxcode\build\bakefiles which are a sort of tutorial to wxCode bakefile usage). Basically the changes required are about the paths of the COMP_XXX vars. From such bakefile snippet: <set var="COMP_NAME">keybinder</set> <set var="COMP_SRC">../src/keybinder.cpp ../src/menuutils.cpp</set> <set var="COMP_HDR">../include/wx/keybinderdef.h ../include/wx/keybinder.h ../include/wx/menuutils.h</set> <set var="COMP_SAMPLE_SRC">../sample/minimal.cpp</set> you need to change it into: <set var="COMP_NAME">keybinder</set> <set var="COMP_SRC">keybinder.cpp menuutils.cpp</set> <set var="COMP_HDR">wx/keybinderdef.h wx/keybinder.h wx/menuutils.h</set> <set var="COMP_SAMPLE_DIR">../sample</set> <set var="COMP_SAMPLE_SRC">minimal.cpp</set> which is much more readable and easier to maintain. For more info, please ask me... Francesco Montorsi |