diff options
author | Brad King <brad.king@kitware.com> | 2010-12-08 21:51:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-12-08 22:14:14 (GMT) |
commit | e30a775f68ddae48ca6987fc2c21c07844a26804 (patch) | |
tree | 7f28c404adf822fd3f3d2dda3a0b73796ae93d10 /Source/cmVisualStudio10TargetGenerator.cxx | |
parent | afc8906468bb09a934442bdbdcb86d9f40926e75 (diff) | |
download | CMake-e30a775f68ddae48ca6987fc2c21c07844a26804.zip CMake-e30a775f68ddae48ca6987fc2c21c07844a26804.tar.gz CMake-e30a775f68ddae48ca6987fc2c21c07844a26804.tar.bz2 |
Improve signature of cmLocalGenerator::GetRealDependency
Allow file-level custom command dependencies to be skipped.
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.cxx')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.cxx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx index 524be8b..1d885e0 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -386,10 +386,12 @@ cmVisualStudio10TargetGenerator::WriteCustomRule(cmSourceFile* source, d != command.GetDepends().end(); ++d) { - std::string dep = this->LocalGenerator-> - GetRealDependency(d->c_str(), i->c_str()); - this->ConvertToWindowsSlash(dep); - (*this->BuildFileStream ) << ";" << dep; + std::string dep; + if(this->LocalGenerator->GetRealDependency(d->c_str(), i->c_str(), dep)) + { + this->ConvertToWindowsSlash(dep); + (*this->BuildFileStream ) << ";" << dep; + } } (*this->BuildFileStream ) << ";%(AdditionalInputs)</AdditionalInputs>\n"; this->WritePlatformConfigTag("Outputs", i->c_str(), 3); |