CMake/Tests/QtAutogen/uiconly.cpp
Stephen Kelly f7ae1d8ad6 QtAutogen: Short-circut some logic when moc is not available.
This is the case when AUTOMOC is false.  This prevents creating rules
to moc the files in the absense of moc.
2014-01-28 21:04:40 +01:00

14 lines
131 B
C++

#include "uiconly.h"
UicOnly::UicOnly(QWidget *parent)
: QWidget(parent), ui(new Ui::UicOnly)
{
}
int main()
{
return 0;
}