summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorTarget.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-09-01 14:25:04 (GMT)
committerKitware Robot <kwrobot@kitware.com>2017-09-01 14:25:08 (GMT)
commitbd777178006c643bcab4bcbb1c5432f9306568ec (patch)
tree8c23d3567a138a9331bb5026506e37a7c2a5aa11 /Source/cmGeneratorTarget.cxx
parent9a509099f77ed32a0845e4e3fad7b8f1eb9be10b (diff)
parent068cc545d905a5b0fd8caa09494c04346d0ca936 (diff)
downloadCMake-bd777178006c643bcab4bcbb1c5432f9306568ec.zip
CMake-bd777178006c643bcab4bcbb1c5432f9306568ec.tar.gz
CMake-bd777178006c643bcab4bcbb1c5432f9306568ec.tar.bz2
Merge topic 'fix-genex-SOURCES'
068cc545 Genex: Fix TARGET_PROPERTY value of SOURCES Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !1218
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r--Source/cmGeneratorTarget.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx
index 4e412f3..74306b0 100644
--- a/Source/cmGeneratorTarget.cxx
+++ b/Source/cmGeneratorTarget.cxx
@@ -158,7 +158,7 @@ const char* cmGeneratorTarget::GetSourcesProperty() const
}
static std::string value;
value.clear();
- value = cmJoin(values, "");
+ value = cmJoin(values, ";");
return value.c_str();
}