= Creating new component = Go to source directory ```src/_NewComponent```. {{{#!sh cd src cd _NewComponent }}} Run a script that will create a new component (Windows batch file ```.bat``` / Unix script ```.sh```) with one argument -- component name. Windows: {{{#!sh NewComponent.bat MyComponentName }}} Linux: {{{#!sh ./NewComponent.sh MyComponentName }}} It will use CMake to create a new component (it can take some time when used for the first time). Component files will be added to ```src/MyComponentName```. In order to add this component to the project, just add this line to ```src/CMakeLists.txt```: {{{#!makefile add_directory(MyComponentName) }}}