Reputation: 21877
How to make qmake to run external script(which produces object files) and then executing linking commands without trying to run the compiler to create object files.
Upvotes: 0
Views: 553
Reputation: 8231
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.
Upvotes: 1