CMake/Tests/QtAutogen/sub/uiconly.cpp
Stephen Kelly 6053ce22f6 QtAutogen: Make uic work even when the source is in a subdir.
Modify the includedUis to store the path to the file which includes
the ui file. Reuse that path to generate the output file from the
uic process.
2014-02-04 13:21:43 -05:00

14 lines
131 B
C++

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