Changes between Version 3 and Version 4 of TutorialCreatingNewComponent
- Timestamp:
- Nov 21, 2013, 11:34:11 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TutorialCreatingNewComponent
v3 v4 10 10 Run a script that will create a new component (Windows batch file ```.bat``` / Unix script ```.sh```) with one argument -- component name. 11 11 12 Windows: 12 13 {{{#!sh 13 14 NewComponent.bat MyComponentName 14 15 }}} 15 or 16 Linux: 16 17 {{{#!sh 17 18 ./NewComponent.sh MyComponentName … … 22 23 23 24 In order to add this component to the project, just add this line to ```src/CMakeLists.txt```: 24 {{{#! sh25 {{{#!makefile 25 26 add_directory(MyComponentName) 26 27 }}}