From 1be3b0fd993602feb0c994467787c6be93ec5a1a Mon Sep 17 00:00:00 2001 From: Luis Ibanez Date: Thu, 29 Nov 2001 01:51:14 -0500 Subject: [PATCH] ENH: GENERATED_CODE case added to switch. --- Source/cmUnixMakefileGenerator.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx index 1a28b71c7..1ddfe0cfe 100644 --- a/Source/cmUnixMakefileGenerator.cxx +++ b/Source/cmUnixMakefileGenerator.cxx @@ -679,6 +679,8 @@ void cmUnixMakefileGenerator::OutputTargets(std::ostream& fout) // This is handled by the OutputInstallRules method case cmTarget::INSTALL_PROGRAMS: // This is handled by the OutputInstallRules method + case cmTarget::GENERATED_CODE: + // This is handled by the CustomCommands break; } }