summaryrefslogtreecommitdiff
path: root/Source/cmIncludeExternalMSProjectCommand.cxx
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-05-22 11:05:59 -0400
committerAlexander Neundorf <neundorf@kde.org>2007-05-22 11:05:59 -0400
commitbef8d3580b32987486c67cf0eed73fe3d11472d3 (patch)
treea1ceea3d289f766b3ecfc6e371b0c83be48f2550 /Source/cmIncludeExternalMSProjectCommand.cxx
parentb37cc6072f50c175b208f4ba1340bf3b8397ccdc (diff)
downloadcmake-bef8d3580b32987486c67cf0eed73fe3d11472d3.tar.gz
COMP: compile fix
Alex
Diffstat (limited to 'Source/cmIncludeExternalMSProjectCommand.cxx')
-rw-r--r--Source/cmIncludeExternalMSProjectCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmIncludeExternalMSProjectCommand.cxx b/Source/cmIncludeExternalMSProjectCommand.cxx
index 53da366e05..16847dc39b 100644
--- a/Source/cmIncludeExternalMSProjectCommand.cxx
+++ b/Source/cmIncludeExternalMSProjectCommand.cxx
@@ -50,7 +50,7 @@ bool cmIncludeExternalMSProjectCommand
cmSystemTools::ConvertToUnixSlashes(path);
// Create a target instance for this utility.
- cmTarget* target=this->Makefile->AddNewTarget(cmTarget::UTILITY, utility_name.c_str());
+ cmTarget* target=this->Makefile->AddNewTarget(cmTarget::UTILITY, utility_name.c_str(), false);
target->SetProperty("EXCLUDE_FROM_ALL","FALSE");
std::vector<std::string> no_outputs;
cmCustomCommandLines commandLines;