diff options
author | Brad King <brad.king@kitware.com> | 2014-07-15 14:48:17 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-07-15 14:48:17 (GMT) |
commit | 29abb3dedb7eca410083ee1e5424fddd24b1d4d6 (patch) | |
tree | 7ea888237ea14017ca00e652285e726df115eb2c | |
parent | d3076b1d51c25f076d3dbde7d94e06078040f124 (diff) | |
parent | 4b139169702dec37039869cc4af064c18e6789b8 (diff) | |
download | CMake-29abb3dedb7eca410083ee1e5424fddd24b1d4d6.zip CMake-29abb3dedb7eca410083ee1e5424fddd24b1d4d6.tar.gz CMake-29abb3dedb7eca410083ee1e5424fddd24b1d4d6.tar.bz2 |
Merge topic 'dev/fix-cmake-rule-property'
4b139169 cmMakefile: fix __CMAKE_RULE property setting
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 2218e2f..d3ca34a 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -1042,8 +1042,8 @@ cmMakefile::AddCustomCommandToOutput(const std::vector<std::string>& outputs, if (!file) { file = this->CreateSource(outName, true); - file->SetProperty("__CMAKE_RULE", "1"); } + file->SetProperty("__CMAKE_RULE", "1"); } // Always create the output sources and mark them generated. |