File indexing completed on 2025-01-19 04:23:45

0001 #ifndef CONFIGUREPROCESS_H
0002 #define CONFIGUREPROCESS_H
0003 
0004 #include <QProcess>
0005 #include <QUrl>
0006 
0007 class CMakeProjectManager;
0008 class ConfigureProcess : public QProcess
0009 {
0010     Q_OBJECT
0011 public:
0012     ConfigureProcess(CMakeProjectManager *parent = nullptr);
0013     void prepare();
0014 
0015 private:
0016     CMakeProjectManager *m_project;
0017     void makeDir();
0018 };
0019 
0020 #endif // CONFIGUREPROCESS_H