diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2022-04-22 22:20:30 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2022-07-06 14:15:23 (GMT) |
commit | 3526b8c1232db2720c5d782ffde8acdc5cb2c191 (patch) | |
tree | 8ee3b7d2adba6f170af58844a1b798916db70dcb /Source/cmExportTryCompileFileGenerator.h | |
parent | fe44cbe9e7849b3c555fbb29c83a54414c0e8629 (diff) | |
download | CMake-3526b8c1232db2720c5d782ffde8acdc5cb2c191.zip CMake-3526b8c1232db2720c5d782ffde8acdc5cb2c191.tar.gz CMake-3526b8c1232db2720c5d782ffde8acdc5cb2c191.tar.bz2 |
cmExport*FileGenerator: support exporting C++ module properties
C++ module properties will be generated at build time, so generate code
that includes the files actually responsible for the information.
Diffstat (limited to 'Source/cmExportTryCompileFileGenerator.h')
-rw-r--r-- | Source/cmExportTryCompileFileGenerator.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmExportTryCompileFileGenerator.h b/Source/cmExportTryCompileFileGenerator.h index 1dd8a20..5c34fad 100644 --- a/Source/cmExportTryCompileFileGenerator.h +++ b/Source/cmExportTryCompileFileGenerator.h @@ -55,6 +55,9 @@ protected: std::string GetFileSetFiles(cmGeneratorTarget* target, cmFileSet* fileSet, cmTargetExport* te) override; + std::string GetCxxModulesDirectory() const override { return {}; } + void GenerateCxxModuleConfigInformation(std::ostream&) const override {} + private: std::string FindTargets(const std::string& prop, const cmGeneratorTarget* tgt, |