I finally figured out why the warnings came. Groups (and maybe qmodules) have to be defined in a seperate file with qdoc extension, like
group1.qdoc
/*!
\group group1
\brief Brief description
Full description
*/
/*!
\group group1
\brief Brief description
Full description
*/
To copy to clipboard, switch view to plain text mode
Putting this in a qml-file will not work. It will just be ignored. Thats not all. Files need to be defined in the config. In this case add
sources.fileextensions += *.qdocs
sources.fileextensions += *.qdocs
To copy to clipboard, switch view to plain text mode
Bookmarks