target_sources(): Add FILE_SET mode

This commit is contained in:
Kyle Edwards
2021-08-27 16:41:36 -04:00
parent f2bd022468
commit d8af2d954f
3 changed files with 169 additions and 5 deletions

View File

@@ -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;
};