qmake run external script and link
How to make qmake to run external script(which prod开发者_如何学编程uces object files) and then executing linking commands without trying to run the compiler to create object files.
Search for QMAKE_EXTRA_COMPILERS on stackoverflow or with your preferred web search engine. Or use $$system(your_script) and include the object files in the LIBS variable.
精彩评论