diff options
author | Alex Neundorf <neundorf@kde.org> | 2011-12-13 21:11:47 (GMT) |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2011-12-13 21:11:47 (GMT) |
commit | 96fc5d5d0701c98a5029469c8a9dcc6aa6576278 (patch) | |
tree | a9de1452d820e43e9e548d2b77feb8f86eb21d98 /Source/cmQtAutomoc.h | |
parent | 3c101429a4e563f4c711cae84317806284784eb6 (diff) | |
download | CMake-96fc5d5d0701c98a5029469c8a9dcc6aa6576278.zip CMake-96fc5d5d0701c98a5029469c8a9dcc6aa6576278.tar.gz CMake-96fc5d5d0701c98a5029469c8a9dcc6aa6576278.tar.bz2 |
automoc: default to strict mode, use CMAKE_AUTOMOC_RELAXED_MODE
automoc now defaults to strict mode, also with Qt4, i.e. it behaves as
the documentation says by default. I also inverted the switch
CMAKE_AUTOMOC_STRICT_MODE to CMAKE_AUTOMOC_RELAXED_MODE.
Docs and test adapted accordingly.
Alex
Diffstat (limited to 'Source/cmQtAutomoc.h')
-rw-r--r-- | Source/cmQtAutomoc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmQtAutomoc.h b/Source/cmQtAutomoc.h index a31f36a..8cbbac1 100644 --- a/Source/cmQtAutomoc.h +++ b/Source/cmQtAutomoc.h @@ -85,7 +85,7 @@ private: bool ColorOutput; bool RunMocFailed; bool GenerateAll; - bool StrictMode; + bool RelaxedMode; }; |