summaryrefslogtreecommitdiffstats
path: root/Source/cmVisualStudio10TargetGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2012-04-18 18:42:43 (GMT)
committerBrad King <brad.king@kitware.com>2012-04-18 19:48:50 (GMT)
commitf9b758e91a9afa17123c5b81b5568ebbd52db598 (patch)
tree33ebdb71d5986a7a3031a4f301110c57d83a90b6 /Source/cmVisualStudio10TargetGenerator.cxx
parent31e7fadbb3bfd225e0d48e2d072ccc745d7f2689 (diff)
downloadCMake-f9b758e91a9afa17123c5b81b5568ebbd52db598.zip
CMake-f9b758e91a9afa17123c5b81b5568ebbd52db598.tar.gz
CMake-f9b758e91a9afa17123c5b81b5568ebbd52db598.tar.bz2
Cleanup custom command .rule file internal handling
Teach cmMakefile::AddCustomCommandToOutput to return the cmSourceFile instance to which the custom command is attached. Use the return value instead of separately adding a .rule extension and searching for the source. Mark CMake-generated .rule files explicitly with a property instead of trusting the file extension.
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.cxx')
-rw-r--r--Source/cmVisualStudio10TargetGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx
index 6caaad1..5921530 100644
--- a/Source/cmVisualStudio10TargetGenerator.cxx
+++ b/Source/cmVisualStudio10TargetGenerator.cxx
@@ -460,7 +460,7 @@ cmVisualStudio10TargetGenerator::WriteCustomRule(cmSourceFile* source,
{
std::string sourcePath = source->GetFullPath();
// the rule file seems to need to exist for vs10
- if (source->GetExtension() == "rule")
+ if (source->GetPropertyAsBool("__CMAKE_RULE"))
{
if(!cmSystemTools::FileExists(sourcePath.c_str()))
{