diff options
author | Stephen Kelly <steveire@gmail.com> | 2016-08-27 11:44:52 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2016-08-27 11:44:52 (GMT) |
commit | 6960516b6b053816313d2ff5ee4e9375a84829cb (patch) | |
tree | 442b0c0d99ffe4c44b1cc5eab1173b0066193159 /Source/cmLocalUnixMakefileGenerator3.h | |
parent | e0fd2d0446101847dd40cfe4cc451667d04ddcd9 (diff) | |
download | CMake-6960516b6b053816313d2ff5ee4e9375a84829cb.zip CMake-6960516b6b053816313d2ff5ee4e9375a84829cb.tar.gz CMake-6960516b6b053816313d2ff5ee4e9375a84829cb.tar.bz2 |
Makefiles: Change signature of AppendCustomCommand
The RelativeRoot parameter will become non-default.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h index 5e1b651..ed167b3 100644 --- a/Source/cmLocalUnixMakefileGenerator3.h +++ b/Source/cmLocalUnixMakefileGenerator3.h @@ -234,9 +234,9 @@ protected: cmOutputConverter::RelativeRoot relative = cmOutputConverter::HOME_OUTPUT); void AppendCustomCommand( std::vector<std::string>& commands, cmCustomCommandGenerator const& ccg, - cmGeneratorTarget* target, bool echo_comment = false, + cmGeneratorTarget* target, cmOutputConverter::RelativeRoot relative = cmOutputConverter::HOME_OUTPUT, - std::ostream* content = CM_NULLPTR); + bool echo_comment = false, std::ostream* content = CM_NULLPTR); void AppendCleanCommand(std::vector<std::string>& commands, const std::vector<std::string>& files, cmGeneratorTarget* target, |