aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/python/pythonbuildsystem.h
diff options
context:
space:
mode:
authorDavid Schulz <[email protected]>2023-11-01 15:05:03 +0100
committerDavid Schulz <[email protected]>2023-11-28 12:17:14 +0000
commit09e94ae4ac040ad313b7b86e62489dee7cd3804a (patch)
tree1e907c076ba18b326b413ed5ac551db4a3e5e380 /src/plugins/python/pythonbuildsystem.h
parent12428bf1d67bd282c5276383c91d968451b44036 (diff)
Python: use kits page in python wizards
Change-Id: I1f7aaf145443481546abb868c8c167186600b848 Reviewed-by: Christian Stenger <[email protected]>
Diffstat (limited to 'src/plugins/python/pythonbuildsystem.h')
-rw-r--r--src/plugins/python/pythonbuildsystem.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/python/pythonbuildsystem.h b/src/plugins/python/pythonbuildsystem.h
index 8bd79391dc2..9729ac3fe50 100644
--- a/src/plugins/python/pythonbuildsystem.h
+++ b/src/plugins/python/pythonbuildsystem.h
@@ -7,10 +7,12 @@
namespace Python::Internal {
+class PythonBuildConfiguration;
+
class PythonBuildSystem : public ProjectExplorer::BuildSystem
{
public:
- explicit PythonBuildSystem(ProjectExplorer::Target *target);
+ explicit PythonBuildSystem(PythonBuildConfiguration *buildConfig);
bool supportsAction(ProjectExplorer::Node *context,
ProjectExplorer::ProjectAction action,
@@ -44,6 +46,7 @@ private:
QList<FileEntry> m_files;
QList<FileEntry> m_qmlImportPaths;
+ PythonBuildConfiguration *m_buildConfig = nullptr;
};