cmGlobalVisualStudioVersionedGenerator: support dyndep in VS2022 and up

This commit is contained in:
Ben Boeckel
2022-11-28 11:29:41 -05:00
parent 5b16a0e568
commit fce359c5de

View File

@@ -46,6 +46,11 @@ public:
const char* GetAndroidApplicationTypeRevision() const override;
bool SupportsCxxModuleDyndep() const override
{
return this->Version >= cmGlobalVisualStudioGenerator::VSVersion::VS17;
}
protected:
cmGlobalVisualStudioVersionedGenerator(
VSVersion version, cmake* cm, const std::string& name,