|
@@ -272,6 +272,13 @@ void cmMakefileExecutableTargetGenerator::WriteExecutableRule(bool relink)
|
|
|
exeCleanFiles.push_back(this->Convert(cleanFullName.c_str(),
|
|
exeCleanFiles.push_back(this->Convert(cleanFullName.c_str(),
|
|
|
cmLocalGenerator::START_OUTPUT,
|
|
cmLocalGenerator::START_OUTPUT,
|
|
|
cmLocalGenerator::UNCHANGED));
|
|
cmLocalGenerator::UNCHANGED));
|
|
|
|
|
+#ifdef _WIN32
|
|
|
|
|
+ // There may be a manifest file for this target. Add it to the
|
|
|
|
|
+ // clean set just in case.
|
|
|
|
|
+ exeCleanFiles.push_back(this->Convert((cleanFullName+".manifest").c_str(),
|
|
|
|
|
+ cmLocalGenerator::START_OUTPUT,
|
|
|
|
|
+ cmLocalGenerator::UNCHANGED));
|
|
|
|
|
+#endif
|
|
|
if(cleanRealName != cleanName)
|
|
if(cleanRealName != cleanName)
|
|
|
{
|
|
{
|
|
|
exeCleanFiles.push_back(this->Convert(cleanFullRealName.c_str(),
|
|
exeCleanFiles.push_back(this->Convert(cleanFullRealName.c_str(),
|