Batchmake developers: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
Line 5: | Line 5: | ||
* Add a new class (bmScriptNewCommadAction.h, and bmScriptNewCommadAction.cxx) | * Add a new class (bmScriptNewCommadAction.h, and bmScriptNewCommadAction.cxx) | ||
* Don't forget to add it to the CMakeLists | * Don't forget to add it to the CMakeLists | ||
* Include the header of your class | * In the header file bmScriptActionManager.h : | ||
** #include "bmScriptNewCommadAction.h" | ** Include the header of your class | ||
***#include "bmScriptNewCommadAction.h") | |||
** In the GetKeywordList() function, add a new keyword | |||
***BM_NEWKEYWORD(_list, DownloadXcedeDataSet); |
Revision as of 19:52, 21 January 2008
Documentation for Developers.
Add new command to BatchMake
- Add a new class (bmScriptNewCommadAction.h, and bmScriptNewCommadAction.cxx)
- Don't forget to add it to the CMakeLists
- In the header file bmScriptActionManager.h :
- Include the header of your class
- include "bmScriptNewCommadAction.h")
- In the GetKeywordList() function, add a new keyword
- BM_NEWKEYWORD(_list, DownloadXcedeDataSet);
- Include the header of your class