diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2017-02-28 11:34:35 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-03-06 21:01:02 (GMT) |
commit | 0d9a5baa0e96fb2d14838ebeb6a86eec62acf100 (patch) | |
tree | 6243b5c4f5a29309cade5af2e10bb44ac8994efd /Source/cmQtAutoGeneratorInitializer.cxx | |
parent | 47dbe9267eea47e7be656da409a9ee8ced691422 (diff) | |
download | CMake-0d9a5baa0e96fb2d14838ebeb6a86eec62acf100.zip CMake-0d9a5baa0e96fb2d14838ebeb6a86eec62acf100.tar.gz CMake-0d9a5baa0e96fb2d14838ebeb6a86eec62acf100.tar.bz2 |
Autogen: Remove unused variables
Diffstat (limited to 'Source/cmQtAutoGeneratorInitializer.cxx')
-rw-r--r-- | Source/cmQtAutoGeneratorInitializer.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmQtAutoGeneratorInitializer.cxx b/Source/cmQtAutoGeneratorInitializer.cxx index 3a7951a..151f39c 100644 --- a/Source/cmQtAutoGeneratorInitializer.cxx +++ b/Source/cmQtAutoGeneratorInitializer.cxx @@ -135,15 +135,12 @@ static void SetupSourceFiles(cmGeneratorTarget const* target, std::vector<std::string>& mocSkipList, std::vector<std::string>& uicSkipList) { - cmMakefile* makefile = target->Target->GetMakefile(); - std::vector<cmSourceFile*> srcFiles; target->GetConfigCommonSourceFiles(srcFiles); const bool mocTarget = target->GetPropertyAsBool("AUTOMOC"); const bool uicTarget = target->GetPropertyAsBool("AUTOUIC"); - cmFilePathChecksum fpathCheckSum(makefile); for (std::vector<cmSourceFile*>::const_iterator fileIt = srcFiles.begin(); fileIt != srcFiles.end(); ++fileIt) { cmSourceFile* sf = *fileIt; |