summaryrefslogtreecommitdiff
path: root/Source/cmSourceGroupCommand.cxx
diff options
context:
space:
mode:
authorMateusz Janek <stryku2393@gmail.com>2019-04-25 20:51:40 +0200
committerMateusz Janek <stryku2393@gmail.com>2019-04-25 20:51:40 +0200
commit8d93815d204b4827ff9f1280a73e55861c00f47c (patch)
treef4750239df90dec60c730463974d93602e225cd7 /Source/cmSourceGroupCommand.cxx
parent4ccf40e61e02cffb28b549a3de6f4794ea3e3d92 (diff)
downloadcmake-8d93815d204b4827ff9f1280a73e55861c00f47c.tar.gz
source_group command ensures that FILES arguments are actually files
Diffstat (limited to 'Source/cmSourceGroupCommand.cxx')
-rw-r--r--Source/cmSourceGroupCommand.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmSourceGroupCommand.cxx b/Source/cmSourceGroupCommand.cxx
index 2bc4c3955c..5cdacaaf86 100644
--- a/Source/cmSourceGroupCommand.cxx
+++ b/Source/cmSourceGroupCommand.cxx
@@ -80,7 +80,10 @@ std::vector<std::string> prepareFilesPathsForTree(
prepared.reserve(filesPaths.size());
for (auto const& filePath : filesPaths) {
- prepared.push_back(prepareFilePathForTree(filePath, currentSourceDir));
+ // If provided file path is actually not a file, silently ignore it.
+ if (cmSystemTools::FileExists(filePath, /*isFile=*/true)) {
+ prepared.push_back(prepareFilePathForTree(filePath, currentSourceDir));
+ }
}
return prepared;