summaryrefslogtreecommitdiffstats
path: root/Source/cmIncludeExternalMSProjectCommand.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2009-07-14 20:06:58 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2009-07-14 20:06:58 (GMT)
commit019252be8096313707f4bc401e34b1687c02b763 (patch)
tree56a656906b4bf2cfe7313d8b2f67f323711b6532 /Source/cmIncludeExternalMSProjectCommand.cxx
parent69e366f49bba3ef4eb2019db5e06f265549b6515 (diff)
downloadCMake-019252be8096313707f4bc401e34b1687c02b763.zip
CMake-019252be8096313707f4bc401e34b1687c02b763.tar.gz
CMake-019252be8096313707f4bc401e34b1687c02b763.tar.bz2
ENH: fix vsexternal test on vs 71
Diffstat (limited to 'Source/cmIncludeExternalMSProjectCommand.cxx')
-rw-r--r--Source/cmIncludeExternalMSProjectCommand.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmIncludeExternalMSProjectCommand.cxx b/Source/cmIncludeExternalMSProjectCommand.cxx
index a4de3c0..8ed49b1 100644
--- a/Source/cmIncludeExternalMSProjectCommand.cxx
+++ b/Source/cmIncludeExternalMSProjectCommand.cxx
@@ -37,7 +37,8 @@ bool cmIncludeExternalMSProjectCommand
cmTarget* target=this->Makefile->AddNewTarget(cmTarget::UTILITY,
args[0].c_str());
target->SetProperty("EXTERNAL_MSPROJECT", path.c_str());
- target->SetProperty("EXCLUDE_FROM_ALL","FALSE");
+ target->SetProperty("EXCLUDE_FROM_ALL","FALSE");
+ target->SetProperty("GENERATOR_FILE_NAME", args[0].c_str());
for (unsigned int i=2; i<args.size(); ++i)
{
target->AddUtility(args[i].c_str());