Talespin_Kit
Talespin_Kit

Reputation: 21877

qmake run external script and link

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

Answers (1)

hmuelner
hmuelner

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

Related Questions