mirror of
https://github.com/reactos/CMake.git
synced 2025-01-08 04:00:27 +00:00
64b377d707
For bug #7191. Improvements to the dialog that sets up the first configure. Fixing the large size of it by breaking it up into a wizard. Also incorporated suggestions from bug report.
22 lines
261 B
C++
22 lines
261 B
C++
|
|
|
|
#ifndef COMPILERS_HPP
|
|
#define COMPILERS_HPP
|
|
|
|
#include <QWidget>
|
|
#include <ui_Compilers.h>
|
|
|
|
class Compilers : public QWidget, public Ui::Compilers
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Compilers(QWidget* p=NULL) :
|
|
QWidget(p)
|
|
{
|
|
this->setupUi(this);
|
|
}
|
|
};
|
|
|
|
#endif
|
|
|