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>
This commit is contained in:
hjk
2023-04-06 11:45:10 +02:00
parent 4753b658bb
commit 7e63574764

View File

@@ -35,7 +35,11 @@ CMakeProject::CMakeProject(const FilePath &fileName)
setProjectLanguages(Core::Context(ProjectExplorer::Constants::CXX_LANGUAGE_ID)); setProjectLanguages(Core::Context(ProjectExplorer::Constants::CXX_LANGUAGE_ID));
setDisplayName(projectDirectory().fileName()); setDisplayName(projectDirectory().fileName());
setCanBuildProducts(); 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(); readPresets();
} }