summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.h
diff options
context:
space:
mode:
authorGregor Jasny <gjasny@googlemail.com>2016-08-30 18:55:37 (GMT)
committerBrad King <brad.king@kitware.com>2016-10-17 14:06:18 (GMT)
commit3b6f1587bed536e3d31e6665aff35aa27f5e79bc (patch)
tree5d53fe3704701d69e84bb13205cde5fcf3bdab5b /Source/cmGlobalGenerator.h
parent5ebba228823ffc96e82f4b6cc1103c2f2ed8cfa7 (diff)
downloadCMake-3b6f1587bed536e3d31e6665aff35aa27f5e79bc.zip
CMake-3b6f1587bed536e3d31e6665aff35aa27f5e79bc.tar.gz
CMake-3b6f1587bed536e3d31e6665aff35aa27f5e79bc.tar.bz2
Factor IDE folder name retrieval out into helper method
Add a `cmGeneratorTarget::GetEffectiveFolderName` helper to abstract lookup of the `FOLDER` property in combination with checking for generator support of folders.
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r--Source/cmGlobalGenerator.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h
index 38eaa76..c3498e0 100644
--- a/Source/cmGlobalGenerator.h
+++ b/Source/cmGlobalGenerator.h
@@ -334,6 +334,8 @@ public:
i.e. "Can I build Debug and Release in the same tree?" */
virtual bool IsMultiConfig() const { return false; }
+ virtual bool UseFolderProperty() const;
+
std::string GetSharedLibFlagsForLanguage(std::string const& lang) const;
/** Generate an <output>.rule file path for a given command output. */
@@ -463,7 +465,6 @@ protected:
std::string const& name) const;
const char* GetPredefinedTargetsFolder();
- virtual bool UseFolderProperty();
private:
#if defined(CMAKE_BUILD_WITH_CMAKE)