summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorFranck Bettinger <bettingf@cs.man.ac.uk>2002-09-11 20:43:35 (GMT)
committerFranck Bettinger <bettingf@cs.man.ac.uk>2002-09-11 20:43:35 (GMT)
commitdffde0c4fa2c1cdf49acb35f5d0b5babf895c95f (patch)
treeb5ad85afe39cfbd45169d9f2b48b97daf321e0d1 /Source
parent4be9fce5fe96e5b63fbf4bb469097234c126dca9 (diff)
downloadCMake-dffde0c4fa2c1cdf49acb35f5d0b5babf895c95f.zip
CMake-dffde0c4fa2c1cdf49acb35f5d0b5babf895c95f.tar.gz
CMake-dffde0c4fa2c1cdf49acb35f5d0b5babf895c95f.tar.bz2
added generation of the GENERATED_QT_FILES list for make clean
Diffstat (limited to 'Source')
-rw-r--r--Source/cmLocalUnixMakefileGenerator.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx
index 31e431d..d84948d 100644
--- a/Source/cmLocalUnixMakefileGenerator.cxx
+++ b/Source/cmLocalUnixMakefileGenerator.cxx
@@ -405,6 +405,14 @@ void cmLocalUnixMakefileGenerator::OutputTargetRules(std::ostream& fout)
}
}
fout << "\n\n";
+ const char * qt_files = m_Makefile->GetDefinition("GENERATED_QT_FILES");
+ if (m_Makefile->GetDefinition("GENERATED_QT_FILES")!=NULL &&
+ strlen(m_Makefile->GetDefinition("GENERATED_QT_FILES"))>0)
+ {
+ fout << "GENERATED_QT_FILES = ";
+ fout << m_Makefile->GetDefinition("GENERATED_QT_FILES");
+ fout << "\n\n";
+ }
}