diff options
| author | Christian Kandeler <christian.kandeler@qt.io> | 2025-03-12 13:36:52 +0100 |
|---|---|---|
| committer | Christian Kandeler <christian.kandeler@qt.io> | 2025-03-12 13:53:53 +0000 |
| commit | 381f72ab16760757ce164420fd272ccec9ce916d (patch) | |
| tree | 5d05766d8da14e67f426da3818f9aab058b91b80 /src/plugins/python/pythonproject.cpp | |
| parent | 767055def52da17d2ac565d106de041a04654e26 (diff) | |
ProjectExplorer: Make build system name available in Project
There is a one-to-one correspondence between the types of Project and
BuildSystem, so we shouldn't need access to a BuildSystem object to get
at the build system name.
Change-Id: Ic09c58e42e609d5db8cbf9f85bbe87d1ec3221c2
Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/python/pythonproject.cpp')
| -rw-r--r-- | src/plugins/python/pythonproject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/python/pythonproject.cpp b/src/plugins/python/pythonproject.cpp index 481033dcbf3..8c6b8b1d1ca 100644 --- a/src/plugins/python/pythonproject.cpp +++ b/src/plugins/python/pythonproject.cpp @@ -23,7 +23,7 @@ PythonProject::PythonProject(const FilePath &fileName) setId(PythonProjectId); setProjectLanguages(Context(ProjectExplorer::Constants::PYTHON_LANGUAGE_ID)); setDisplayName(fileName.completeBaseName()); - setBuildSystemCreator<PythonBuildSystem>(); + setBuildSystemCreator<PythonBuildSystem>("python"); } PythonProjectNode::PythonProjectNode(const FilePath &path) |
