diff options
-rw-r--r-- | Source/cmIncludeExternalMSProjectCommand.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmIncludeExternalMSProjectCommand.cxx b/Source/cmIncludeExternalMSProjectCommand.cxx index e7a2da4..37333c2 100644 --- a/Source/cmIncludeExternalMSProjectCommand.cxx +++ b/Source/cmIncludeExternalMSProjectCommand.cxx @@ -25,10 +25,10 @@ bool cmIncludeExternalMSProjectCommand::InitialPass(std::vector<std::string> con depends.push_back(args[i]); } } -
- std::string utility_name("INCLUDE_EXTERNAL_MSPROJECT");
- utility_name += "_";
- utility_name += args[0];
+ + std::string utility_name("INCLUDE_EXTERNAL_MSPROJECT"); + utility_name += "_"; + utility_name += args[0]; m_Makefile->AddUtilityCommand(utility_name.c_str(), "echo", "\"Include external project\"", false, name_and_location, depends); |