summaryrefslogtreecommitdiff
path: root/src/plugins/cmakeprojectmanager/cmakeproject.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2023-04-06 11:45:10 +0200
committerhjk <hjk@qt.io>2023-04-06 10:07:48 +0000
commit7e635747649e23b6b04787feaee102e0ef298612 (patch)
tree5f92c20db71f59de1567c8a68435a24be3512a47 /src/plugins/cmakeprojectmanager/cmakeproject.cpp
parent4753b658bb79a07dd19df27e2b6ddbcf80502bb2 (diff)
downloadqt-creator-7e635747649e23b6b04787feaee102e0ef298612.tar.gz
CMake: Disable the default "install into temporary host" deploy step
This is not needed with the new option in the actual cmake build step. Change-Id: I3bf8bd4ed96c44223ad401406a168d3c8d07fa23 Reviewed-by: Cristian Adam <cristian.adam@qt.io>
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmakeproject.cpp')
-rw-r--r--src/plugins/cmakeprojectmanager/cmakeproject.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakeproject.cpp b/src/plugins/cmakeprojectmanager/cmakeproject.cpp
index be78fe28d3..13764fc367 100644
--- a/src/plugins/cmakeprojectmanager/cmakeproject.cpp
+++ b/src/plugins/cmakeprojectmanager/cmakeproject.cpp
@@ -35,7 +35,11 @@ CMakeProject::CMakeProject(const FilePath &fileName)
setProjectLanguages(Core::Context(ProjectExplorer::Constants::CXX_LANGUAGE_ID));
setDisplayName(projectDirectory().fileName());
setCanBuildProducts();
- setHasMakeInstallEquivalent(true);
+
+ // This only influences whether 'Install into temporary host directory'
+ // will show up by default enabled in some remote deploy configurations.
+ // We rely on staging via the actual cmake build step.
+ setHasMakeInstallEquivalent(false);
readPresets();
}