QtAutogen: Rename config AM_RELAXED_MODE to AM_MOC_RELAXED_MODE

This commit is contained in:
Sebastian Holtermann
2016-11-30 13:14:23 +01:00
parent 4fa858ecb1
commit 48180401d3
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -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,
+1 -1
View File
@@ -132,7 +132,7 @@ private:
bool RunUicFailed;
bool RunRccFailed;
bool GenerateAll;
bool RelaxedMode;
bool MocRelaxedMode;
};
#endif