summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorTarget.cxx
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.cxx
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.cxx')
-rw-r--r--Source/cmGeneratorTarget.cxx16
1 files changed, 16 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx
index 7eb0ebf..f11149a 100644
--- a/Source/cmGeneratorTarget.cxx
+++ b/Source/cmGeneratorTarget.cxx
@@ -1767,6 +1767,22 @@ std::string cmGeneratorTarget::GetMacContentDirectory(
return fpath;
}
+std::string cmGeneratorTarget::GetEffectiveFolderName() const
+{
+ std::string effectiveFolder;
+
+ if (!this->GlobalGenerator->UseFolderProperty()) {
+ return effectiveFolder;
+ }
+
+ const char* targetFolder = this->GetProperty("FOLDER");
+ if (targetFolder) {
+ effectiveFolder += targetFolder;
+ }
+
+ return effectiveFolder;
+}
+
cmGeneratorTarget::CompileInfo const* cmGeneratorTarget::GetCompileInfo(
const std::string& config) const
{