1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
2 | // |
3 | // SPDX-License-Identifier: GPL-3.0-or-later |
4 | |
5 | #ifndef SENDEVENTS_H |
6 | #define SENDEVENTS_H |
7 | |
8 | #include <QString> |
9 | #include "services/project/projectservice.h" |
10 | |
11 | class SendEvents final |
12 | { |
13 | SendEvents() = delete; |
14 | SendEvents(const SendEvents &) = delete; |
15 | public: |
16 | static void buildProject(const QString &buildSystem, |
17 | const QString &buildDir, |
18 | const QString &buildFilePath, |
19 | const QStringList &buildArgs); |
20 | |
21 | static void gengrateWorkspace(const QString &projectPath); |
22 | }; |
23 | |
24 | #endif // SENDEVENTS_H |
25 | |