| 1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
|---|---|
| 2 | // |
| 3 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 4 | |
| 5 | #ifndef OPTIONCMAKEGENERATOR_H |
| 6 | #define OPTIONCMAKEGENERATOR_H |
| 7 | |
| 8 | #include "services/option/optiongenerator.h" |
| 9 | |
| 10 | class OptionCmakeGeneratorPrivate; |
| 11 | class OptionCmakeGenerator : public dpfservice::OptionGenerator |
| 12 | { |
| 13 | public: |
| 14 | OptionCmakeGenerator(); |
| 15 | inline static QString kitName() {return "CMake";} |
| 16 | virtual QWidget *optionWidget() override; |
| 17 | |
| 18 | private: |
| 19 | OptionCmakeGeneratorPrivate *const d; |
| 20 | }; |
| 21 | |
| 22 | #endif // OPTIONCMAKEGENERATOR_H |
| 23 |