diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-02-02 12:19:27 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-02-04 18:21:43 (GMT) |
commit | 6053ce22f69f58c9dc4db66dbfe62cdd8fbe2774 (patch) | |
tree | 8b1edb7c8940d5e7981a17df0fa6fdfc8cf7b875 /Tests/QtAutogen/sub/uiconly.cpp | |
parent | 1fc9ecfae63447f9109475c1b1ffb6a2974458d9 (diff) | |
download | CMake-6053ce22f69f58c9dc4db66dbfe62cdd8fbe2774.zip CMake-6053ce22f69f58c9dc4db66dbfe62cdd8fbe2774.tar.gz CMake-6053ce22f69f58c9dc4db66dbfe62cdd8fbe2774.tar.bz2 |
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.
Diffstat (limited to 'Tests/QtAutogen/sub/uiconly.cpp')
-rw-r--r-- | Tests/QtAutogen/sub/uiconly.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Tests/QtAutogen/sub/uiconly.cpp b/Tests/QtAutogen/sub/uiconly.cpp new file mode 100644 index 0000000..cdb3318 --- /dev/null +++ b/Tests/QtAutogen/sub/uiconly.cpp @@ -0,0 +1,13 @@ + +#include "uiconly.h" + +UicOnly::UicOnly(QWidget *parent) + : QWidget(parent), ui(new Ui::UicOnly) +{ + +} + +int main() +{ + return 0; +} |