diff options
author | David Cole <david.cole@kitware.com> | 2011-08-25 19:40:12 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2011-08-25 19:40:12 (GMT) |
commit | 68b3795140169d19962e2651a80e9b7929aedb44 (patch) | |
tree | dffd0c361facda1778a1a08b5aca52bd312e4769 /Source | |
parent | 2c4dbd12e32d66268b6276003cfcbbff374f2c13 (diff) | |
parent | eb02acb695ed257093af0375a0ca5acbb9034985 (diff) | |
download | CMake-68b3795140169d19962e2651a80e9b7929aedb44.zip CMake-68b3795140169d19962e2651a80e9b7929aedb44.tar.gz CMake-68b3795140169d19962e2651a80e9b7929aedb44.tar.bz2 |
Merge topic 'fix-vs10-rebuild-issue'
eb02acb VS10: Avoid unnecessary rebuilds for custom commands
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx index 8cba84c..551b0ad 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -437,7 +437,7 @@ cmVisualStudio10TargetGenerator::WriteCustomRule(cmSourceFile* source, (*this->BuildFileStream ) << sep << out; sep = ";"; } - (*this->BuildFileStream ) << ";%(Outputs)</Outputs>\n"; + (*this->BuildFileStream ) << "</Outputs>\n"; } this->WriteString("</CustomBuild>\n", 2); } |