I have a Qdake subdirs project and in a top level .pro file, I specify an additional target as follows:
gruntbuild.target = gruntbuild gruntbuild.commands = grunt --gruntfile $$PWD/Gruntfile.js gui.depends = lib gruntbuild QMAKE_EXTRA_TARGETS += gruntbuild
I see in the resulting Makefile that the gruntbuild target gruntbuild correctly added, however the all target does not reference it, so gruntbuild does not start when QtCreator is called by jom.exe .
Do I need to add an additional command to ensure the launch of the target?
jramm source share