aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotoolsprojectmanager
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2019-04-12 14:49:59 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2019-04-23 15:52:05 +0000
commit261d7752b00dfe7191ebd1436e9e96a5212e1bb3 (patch)
tree08e5040fe25cd244221b0dd5f9b296ef0487a331 /src/plugins/autotoolsprojectmanager
parent8827d83115b5b3c88446dd3ba50341ca3b738c0a (diff)
RemoteLinux: Retrieve deployment info from local install root
This provides correct deployment information as seen by the build system when Qt Creator cannot retrieve it directly. It's most useful for autotools and cmake projects, but can also help with qmake in certain edge cases. [ChangeLog] It is no longer necessary to provide a QtCreatorDeployment.txt file when using CMake projects with remote Linux devices. Fixes: QTCREATORBUG-21855 Change-Id: I27e07a45dd1565e489f4b573cc3fff8191c57d9b Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/autotoolsprojectmanager')
-rw-r--r--src/plugins/autotoolsprojectmanager/autotoolsproject.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/autotoolsprojectmanager/autotoolsproject.h b/src/plugins/autotoolsprojectmanager/autotoolsproject.h
index b9016bdcc0..36bf187a07 100644
--- a/src/plugins/autotoolsprojectmanager/autotoolsproject.h
+++ b/src/plugins/autotoolsprojectmanager/autotoolsproject.h
@@ -63,6 +63,8 @@ protected:
RestoreResult fromMap(const QVariantMap &map, QString *errorMessage) override;
private:
+ bool hasMakeInstallEquivalent() const override { return true; }
+
/**
* Loads the project tree by parsing the makefiles.
*/