diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-28 16:28:44 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2022-12-01 13:33:43 (GMT) |
commit | 5b16a0e5682b1020e75abe1c38595c4e9d0af23b (patch) | |
tree | 9e65bd385fdfc16ce7b3c14e6d5ede439aa79eff /Source/cmGlobalVisualStudio7Generator.h | |
parent | 4f9ec5a9befe176a402c079a1644de034ff6ab79 (diff) | |
download | CMake-5b16a0e5682b1020e75abe1c38595c4e9d0af23b.zip CMake-5b16a0e5682b1020e75abe1c38595c4e9d0af23b.tar.gz CMake-5b16a0e5682b1020e75abe1c38595c4e9d0af23b.tar.bz2 |
cmGlobalVisualStudio7Generator: make `SupportsCxxModuleDyndep` protected
The generator target will want to ask this question when determining
whether C++ modules are supported or not.
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio7Generator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.h b/Source/cmGlobalVisualStudio7Generator.h index 1594457..6f6109e 100644 --- a/Source/cmGlobalVisualStudio7Generator.h +++ b/Source/cmGlobalVisualStudio7Generator.h @@ -115,6 +115,8 @@ public: cmIDEFlagTable const* ExtraFlagTable; + virtual bool SupportsCxxModuleDyndep() const { return false; } + protected: cmGlobalVisualStudio7Generator(cmake* cm, std::string const& platformInGeneratorName); @@ -158,8 +160,6 @@ protected: cmValue typeGuid, const std::set<BT<std::pair<std::string, bool>>>& dependencies) = 0; - virtual bool SupportsCxxModuleDyndep() const { return false; } - std::string ConvertToSolutionPath(const std::string& path); std::set<std::string> IsPartOfDefaultBuild( |