diff options
author | Brad King <brad.king@kitware.com> | 2015-06-19 13:38:04 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-06-19 14:29:38 (GMT) |
commit | 0e346427a254024b8eafe52956e8f4ba05d856ed (patch) | |
tree | f06b08f0da74c6088b46d0ac61f511e0321e7f77 /Tests/QtAutogen/automoc_rerun/test1.h.in1 | |
parent | 664156c2314302ad94c684561fdf56c847613de9 (diff) | |
download | CMake-0e346427a254024b8eafe52956e8f4ba05d856ed.zip CMake-0e346427a254024b8eafe52956e8f4ba05d856ed.tar.gz CMake-0e346427a254024b8eafe52956e8f4ba05d856ed.tar.bz2 |
QtAutogen: Always run autogen step even when rcc is enabled (#15608)
In commit v3.2.0-rc1~480^2 (QtAutogen: Regenerate qrc files if their input
changes, 2014-09-17) the "cmake -E cmake_autogen" rule was switched from
always running to running as a custom command with dependencies if rcc
is enabled. This is not correct because automoc always needs to re-run.
Switch back to always running the command.
Diffstat (limited to 'Tests/QtAutogen/automoc_rerun/test1.h.in1')
-rw-r--r-- | Tests/QtAutogen/automoc_rerun/test1.h.in1 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/QtAutogen/automoc_rerun/test1.h.in1 b/Tests/QtAutogen/automoc_rerun/test1.h.in1 new file mode 100644 index 0000000..fee2c09 --- /dev/null +++ b/Tests/QtAutogen/automoc_rerun/test1.h.in1 @@ -0,0 +1,8 @@ +#include <QObject> +class test1 : public QObject +{ + Q_OBJECT + public slots: + void onTst1() {} + void onTst2() {} +}; |