diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-11-08 23:18:35 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-04-07 16:11:18 (GMT) |
commit | 4e6ca504459640ff39eac48eb62fcae95c8fc8d2 (patch) | |
tree | c0784d1596284903582ce64f5254ea4f159aa8dc /Source/cmTargetIncludeDirectoriesCommand.h | |
parent | 5412deded1073e9a217c771ae24e8c5a8a581a96 (diff) | |
download | CMake-4e6ca504459640ff39eac48eb62fcae95c8fc8d2.zip CMake-4e6ca504459640ff39eac48eb62fcae95c8fc8d2.tar.gz CMake-4e6ca504459640ff39eac48eb62fcae95c8fc8d2.tar.bz2 |
cmTargetPropCommandBase: Change the interface to return bool.
This is needed for the target_compile_features command, which
may fail at configure time if an invalid feature is specified.
Diffstat (limited to 'Source/cmTargetIncludeDirectoriesCommand.h')
-rw-r--r-- | Source/cmTargetIncludeDirectoriesCommand.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTargetIncludeDirectoriesCommand.h b/Source/cmTargetIncludeDirectoriesCommand.h index c8b22fb..2a7814e 100644 --- a/Source/cmTargetIncludeDirectoriesCommand.h +++ b/Source/cmTargetIncludeDirectoriesCommand.h @@ -45,7 +45,7 @@ private: virtual void HandleImportedTarget(const std::string &tgt); virtual void HandleMissingTarget(const std::string &name); - virtual void HandleDirectContent(cmTarget *tgt, + virtual bool HandleDirectContent(cmTarget *tgt, const std::vector<std::string> &content, bool prepend, bool system); virtual void HandleInterfaceContent(cmTarget *tgt, |