有一个somefile.h.in
脚本somefile.h.pl
可以生成许多文件,例如“somefile.h.gen”或“somefile_other.cpp.gen2”。
如何在 qmake 中添加源生成阶段?在普通的 Makefile 中,我只会放一些类似的东西
somefile.o: somefile.cpp somefile.h somefile.h.gen
...
soemfile.h.gen: somefile.h.in somefile.h.pl
./somefile.h.pl < somefile.h.in # writes somefile.h.gen and friends