summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorTarget.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/cmGeneratorTarget.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/cmGeneratorTarget.h')
-rw-r--r--Source/cmGeneratorTarget.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h
index 68ffd5c..9382726 100644
--- a/Source/cmGeneratorTarget.h
+++ b/Source/cmGeneratorTarget.h
@@ -220,6 +220,9 @@ public:
std::string GetMacContentDirectory(const std::string& config = CM_NULLPTR,
bool implib = false) const;
+ /** @return folder prefix for IDEs. */
+ std::string GetEffectiveFolderName() const;
+
cmTarget* Target;
cmMakefile* Makefile;
cmLocalGenerator* LocalGenerator;