diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2022-02-24 23:09:53 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2022-03-29 17:58:27 (GMT) |
commit | c798744f8193e97f00f1b6e47dc5bc6fdc34b222 (patch) | |
tree | 27b2dc2cbd04d45026319bbe006acd72bb0f3dff /Source/cmGeneratorTarget.h | |
parent | fdbef2a2be1f070e0f0809536639ff20d80584e6 (diff) | |
download | CMake-c798744f8193e97f00f1b6e47dc5bc6fdc34b222.zip CMake-c798744f8193e97f00f1b6e47dc5bc6fdc34b222.tar.gz CMake-c798744f8193e97f00f1b6e47dc5bc6fdc34b222.tar.bz2 |
FILE_SET: Add VERIFY_HEADER_SETS target property
Fixes: #23338
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 96e48a4..53844ae 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -868,6 +868,11 @@ public: std::vector<std::string> GetGeneratedISPCObjects( std::string const& config) const; + bool AddHeaderSetVerification(); + std::string GenerateHeaderSetVerificationFile( + cmSourceFile& source, const std::string& dir, + cm::optional<std::set<std::string>>& languages) const; + private: void AddSourceCommon(const std::string& src, bool before = false); |