diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2021-08-27 20:41:36 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2021-10-27 19:17:23 (GMT) |
commit | d8af2d954f8619f0e8bc42252d310085dec94df4 (patch) | |
tree | 7305103f3b2efcdafccca1d687c4a925a2b86e83 /Source/cmTargetPropCommandBase.h | |
parent | f2bd02246830617c3dec5b517821f14a9aa3453c (diff) | |
download | CMake-d8af2d954f8619f0e8bc42252d310085dec94df4.zip CMake-d8af2d954f8619f0e8bc42252d310085dec94df4.tar.gz CMake-d8af2d954f8619f0e8bc42252d310085dec94df4.tar.bz2 |
target_sources(): Add FILE_SET mode
Diffstat (limited to 'Source/cmTargetPropCommandBase.h')
-rw-r--r-- | Source/cmTargetPropCommandBase.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmTargetPropCommandBase.h b/Source/cmTargetPropCommandBase.h index fc24fe8..6bf7c3c 100644 --- a/Source/cmTargetPropCommandBase.h +++ b/Source/cmTargetPropCommandBase.h @@ -40,6 +40,9 @@ protected: virtual void HandleInterfaceContent(cmTarget* tgt, const std::vector<std::string>& content, bool prepend, bool system); + virtual bool PopulateTargetProperties( + const std::string& scope, const std::vector<std::string>& content, + bool prepend, bool system); private: virtual void HandleMissingTarget(const std::string& name) = 0; @@ -52,9 +55,6 @@ private: bool ProcessContentArgs(std::vector<std::string> const& args, unsigned int& argIndex, bool prepend, bool system); - bool PopulateTargetProperies(const std::string& scope, - const std::vector<std::string>& content, - bool prepend, bool system); cmExecutionStatus& Status; }; |