Is there any automatism in cmake to run qhelpgenerator
and get out of it the compressed manual to be included in the executable?
cmake
already takes care of a lot of things. As an example, resources files (.qrc
) are gracefully handled by adding them to the list of source files of a project. The same applies for the moc generated by qmoc
and so on.
I was wondering if there exists something similar to elaborate automatically .qph
files. So far, I only found online projects that use custom targets to run qhelpgenerator
and set dependencies between targets.
It isn't a problem for itself, I want only to know if there exists a nicer way to do it. That's all.