diff options
author | Tomoki Imai <Tomoki.Imai@sony.com> | 2017-12-02 11:54:55 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-12-04 16:21:43 (GMT) |
commit | c89e8522bbe0d5526b2d2e6751511fe9737b37e8 (patch) | |
tree | ceba8b1f3d10e20be7f2d14725ca9a0bd688ad72 /Source/cmGlobalVisualStudioGenerator.h | |
parent | 6e078505444faf3b140e9032ddfdd23d3d5e3fd6 (diff) | |
download | CMake-c89e8522bbe0d5526b2d2e6751511fe9737b37e8.zip CMake-c89e8522bbe0d5526b2d2e6751511fe9737b37e8.tar.gz CMake-c89e8522bbe0d5526b2d2e6751511fe9737b37e8.tar.bz2 |
cmGlobalGenerator: Add IsIncludeExternalMSProjectSupported method
Diffstat (limited to 'Source/cmGlobalVisualStudioGenerator.h')
-rw-r--r-- | Source/cmGlobalVisualStudioGenerator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudioGenerator.h b/Source/cmGlobalVisualStudioGenerator.h index 55a6813..f4fc3cf 100644 --- a/Source/cmGlobalVisualStudioGenerator.h +++ b/Source/cmGlobalVisualStudioGenerator.h @@ -101,6 +101,8 @@ public: /** Return true if building for Windows CE */ virtual bool TargetsWindowsCE() const { return false; } + bool IsIncludeExternalMSProjectSupported() const override { return true; } + class TargetSet : public std::set<cmGeneratorTarget const*> { }; |