summaryrefslogtreecommitdiffstats
path: root/Source/cmFileAPICodemodel.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-09-03 13:37:29 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-09-03 13:40:44 (GMT)
commitc4f2f011084a5e64e6f3745071ea56a286758682 (patch)
tree2bbf7374e9d329b6203d0abee3a38fe394425978 /Source/cmFileAPICodemodel.cxx
parent4684e64c84d49d9152ebab42c8bc4ffa57652041 (diff)
parent2d888e339064d39ae894b4df567441539c8c65da (diff)
downloadCMake-c4f2f011084a5e64e6f3745071ea56a286758682.zip
CMake-c4f2f011084a5e64e6f3745071ea56a286758682.tar.gz
CMake-c4f2f011084a5e64e6f3745071ea56a286758682.tar.bz2
Merge topic 'rename-mutating-getfullpath-overload'
2d888e3390 cmSourceFile: Rename mutating GetFullPath() overload Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !3757
Diffstat (limited to 'Source/cmFileAPICodemodel.cxx')
-rw-r--r--Source/cmFileAPICodemodel.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFileAPICodemodel.cxx b/Source/cmFileAPICodemodel.cxx
index eff32ea..2aa7fe2 100644
--- a/Source/cmFileAPICodemodel.cxx
+++ b/Source/cmFileAPICodemodel.cxx
@@ -1005,7 +1005,7 @@ Json::Value Target::DumpSource(cmGeneratorTarget::SourceAndKind const& sk,
{
Json::Value source = Json::objectValue;
- std::string const path = sk.Source.Value->GetFullPath();
+ std::string const path = sk.Source.Value->ResolveFullPath();
source["path"] = RelativeIfUnder(this->TopSource, path);
if (sk.Source.Value->GetIsGenerated()) {
source["isGenerated"] = true;