diff options
| author | Andy Shaw <andy.shaw@qt.io> | 2019-11-04 15:54:24 +0100 |
|---|---|---|
| committer | Andy Shaw <andy.shaw@qt.io> | 2019-11-06 18:14:17 +0100 |
| commit | b274f656b82e06fad492e241dae6ae65cb377ad1 (patch) | |
| tree | b77a35cf15c94b6e89f7485a3eac89ca155130f3 /qmake/generators/unix/unixmake.h | |
| parent | 4ada4f283efe4b2adcde29c2139dfc502c120399 (diff) | |
Be able to create a response file for other generators too
When building an application for Android on Windows it is possible that
the command line will be too long when doing the link step. So the code
for generating a response file is moved to MakefileGenerator so it can
be used by the other generators easily. The same variables used by
MinGW can be used elsewhere then.
Fixes: QTBUG-71940
Change-Id: I6c331d12e9541a90a4a95e0154d0ea1c056489bc
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'qmake/generators/unix/unixmake.h')
| -rw-r--r-- | qmake/generators/unix/unixmake.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/unix/unixmake.h b/qmake/generators/unix/unixmake.h index 79b161f6da2..28302b4f151 100644 --- a/qmake/generators/unix/unixmake.h +++ b/qmake/generators/unix/unixmake.h @@ -58,7 +58,7 @@ protected: void writeSubTargets(QTextStream &t, QList<SubTarget*> subtargets, int flags) override; void writeMakeParts(QTextStream &); bool writeMakefile(QTextStream &) override; - + std::pair<bool, QString> writeObjectsPart(QTextStream &, bool do_incremental); private: void init2(); ProStringList libdirToFlags(const ProKey &key); |
