aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/python/pythonbuildconfiguration.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <[email protected]>2025-11-03 17:36:58 +0100
committerChristian Kandeler <[email protected]>2025-11-05 08:35:16 +0000
commit808435a6f748c6c72d3ab03b08ddd4fcac64321c (patch)
tree87fea8f928fb22bcfcdc151ce927974e3922fed6 /src/plugins/python/pythonbuildconfiguration.cpp
parent98e25f3861098789cbed44f28c524f1af749964c (diff)
Project management: Attach build system name to BuildSystem classes
Change-Id: I1b0b998fae7ce4ea5588c4d32a317dac7fe442b5 Reviewed-by: Christian Stenger <[email protected]>
Diffstat (limited to 'src/plugins/python/pythonbuildconfiguration.cpp')
-rw-r--r--src/plugins/python/pythonbuildconfiguration.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/python/pythonbuildconfiguration.cpp b/src/plugins/python/pythonbuildconfiguration.cpp
index 6477fb2b8f3..9369d79ef88 100644
--- a/src/plugins/python/pythonbuildconfiguration.cpp
+++ b/src/plugins/python/pythonbuildconfiguration.cpp
@@ -414,7 +414,7 @@ public:
setBuildGenerator([](const Kit *k, const FilePath &projectPath, bool forSetup) {
if (std::optional<Interpreter> python = PythonKitAspect::python(k)) {
BuildInfo base;
- base.buildSystemName = "python";
+ base.buildSystemName = PythonBuildSystem::name();
base.buildDirectory = projectPath.parentDir();
base.displayName = python->name;
base.typeName = Tr::tr("Global Python");