diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2016-11-30 12:14:23 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2016-12-06 14:59:26 (GMT) |
commit | 48180401d321e7fba19ac45e9e2e8a718c20d0b8 (patch) | |
tree | cce3e2aa0323317b7503a27e10ad35f986f5acc1 /Source/cmQtAutoGenerators.cxx | |
parent | 4fa858ecb1b40e63c733047f07cc5049f7e2366a (diff) | |
download | CMake-48180401d321e7fba19ac45e9e2e8a718c20d0b8.zip CMake-48180401d321e7fba19ac45e9e2e8a718c20d0b8.tar.gz CMake-48180401d321e7fba19ac45e9e2e8a718c20d0b8.tar.bz2 |
QtAutogen: Rename config AM_RELAXED_MODE to AM_MOC_RELAXED_MODE
Diffstat (limited to 'Source/cmQtAutoGenerators.cxx')
-rw-r--r-- | Source/cmQtAutoGenerators.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmQtAutoGenerators.cxx b/Source/cmQtAutoGenerators.cxx index fa33cf2..c0a9b63 100644 --- a/Source/cmQtAutoGenerators.cxx +++ b/Source/cmQtAutoGenerators.cxx @@ -320,7 +320,7 @@ bool cmQtAutoGenerators::ReadAutogenInfoFile( } this->CurrentCompileSettingsStr = this->MakeCompileSettingsString(makefile); - this->RelaxedMode = makefile->IsOn("AM_RELAXED_MODE"); + this->MocRelaxedMode = makefile->IsOn("AM_MOC_RELAXED_MODE"); return true; } @@ -497,7 +497,7 @@ bool cmQtAutoGenerators::RunAutogen(cmMakefile* makefile) err << "AUTOGEN: Checking " << absFilename << std::endl; this->LogInfo(err.str()); } - if (this->RelaxedMode) { + if (this->MocRelaxedMode) { this->ParseCppFile(absFilename, headerExtensions, includedMocs, uiFiles); } else { this->StrictParseCppFile(absFilename, headerExtensions, includedMocs, |