mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
BUG: Need to clean manifest files that may have been generated for .exe and .dll files.
This commit is contained in:
@@ -272,6 +272,13 @@ void cmMakefileExecutableTargetGenerator::WriteExecutableRule(bool relink)
|
||||
exeCleanFiles.push_back(this->Convert(cleanFullName.c_str(),
|
||||
cmLocalGenerator::START_OUTPUT,
|
||||
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)
|
||||
{
|
||||
exeCleanFiles.push_back(this->Convert(cleanFullRealName.c_str(),
|
||||
|
||||
Reference in New Issue
Block a user