What you mean by included? Right now we have, two way to modify directly modules properties.
1. `cmake/defs.cmake` : there is a target called `common_modules` that is an INTERFACE. We can use this for whatever compiler options, definitions and more. and target propagates all these to each module. This is best to use when there is no usage of the `module_name` since we don't know it yet. 2. `src/modules/CMakeLists.txt`: Add options to each module as well but with extra ability when we need to specify also the `module_name` in the option.
Do you have something else in mind with the template inclusion?