Add some magic rules to detect which files need to be processed by the moc or uic tools, as well as a way to manually specify exceptions. Signed-off-by: Alberto Mardegan <mardy@users.sourceforge.net> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
16 lines
247 B
C++
16 lines
247 B
C++
#include "mainwindow.h"
|
|
#include "ui_mainwindow.h"
|
|
|
|
#include <QVBoxLayout>
|
|
#include <QtDebug>
|
|
|
|
MainWindow::MainWindow() : ui(new Ui::MainWindow())
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
void MainWindow::on_actionNew_triggered()
|
|
{
|
|
qDebug() << "actionNew";
|
|
}
|