aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/remotelinux/tarpackagecreationstep.h
diff options
context:
space:
mode:
authorChristian Kandeler <[email protected]>2012-08-22 16:52:38 +0200
committerChristian Kandeler <[email protected]>2012-08-24 15:44:03 +0200
commitc7ebfd47a49c8cc2cfb8cb34ada73e32a8611bb0 (patch)
tree6045564559d9cb0a485016997616bd1a1ba14e0f /src/plugins/remotelinux/tarpackagecreationstep.h
parentb80205c592cd3ecc768baba246b5e8df9a34c995 (diff)
RemoteLinux: Remove dependency on Qt4ProjectManager.
Instead use the newly added abstractions from ProjectExplorer. This makes the plugin qmake-independent in principle; any build system can be used as long as the respective QtCreator plugin provides a way to set up the required deployment information. As a side effect of this patch, two features are lost: (1) The ability to add a remote directory automatically for a RemoteLinux based target. This was rarely ever useful, because any non- trivial project requires more files to be deployed than just one binary. (2) The ability to add Desktop files and icons for Fremantle and Harmattan projects. Similar points as above apply here as well; such projects should be set up via QtCreator's wizards or manually by users who know what they are doing. Change-Id: I2d7e621256f01143aafe3b191b04a120f053e672 Reviewed-by: Tobias Hunger <[email protected]>
Diffstat (limited to 'src/plugins/remotelinux/tarpackagecreationstep.h')
-rw-r--r--src/plugins/remotelinux/tarpackagecreationstep.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/remotelinux/tarpackagecreationstep.h b/src/plugins/remotelinux/tarpackagecreationstep.h
index d6cbbabe721..bdc30aa1c8f 100644
--- a/src/plugins/remotelinux/tarpackagecreationstep.h
+++ b/src/plugins/remotelinux/tarpackagecreationstep.h
@@ -31,7 +31,8 @@
#include "abstractpackagingstep.h"
#include "remotelinux_export.h"
-#include "deployablefile.h"
+
+#include <projectexplorer/deployablefile.h>
QT_BEGIN_NAMESPACE
class QFile;
@@ -65,7 +66,7 @@ private:
const QString &remoteFilePath);
bool m_packagingNeeded;
- QList<DeployableFile> m_files;
+ QList<ProjectExplorer::DeployableFile> m_files;
};
} // namespace RemoteLinux