summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2011-03-31 17:22:23 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2011-03-31 17:22:23 (GMT)
commit86f711b9b733ae3fc6f5d3a62dfd203ad5c86624 (patch)
treea1950cf4fe8c86493fe2558c5019bcec8ac4e5dd /Source
parent4fd2a992b85eb6c8a49ea9cc5009e3260a44cbed (diff)
parent08428ba38aa0c11567cd795322533138e66553c4 (diff)
downloadCMake-86f711b9b733ae3fc6f5d3a62dfd203ad5c86624.zip
CMake-86f711b9b733ae3fc6f5d3a62dfd203ad5c86624.tar.gz
CMake-86f711b9b733ae3fc6f5d3a62dfd203ad5c86624.tar.bz2
Merge topic 'generator-expression-dot-in-name-issue-12002'
08428ba Allow '.' in target names in generator expressions (#12002)
Diffstat (limited to 'Source')
-rw-r--r--Source/cmGeneratorExpression.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorExpression.cxx b/Source/cmGeneratorExpression.cxx
index 8710dfc..f88ab0b 100644
--- a/Source/cmGeneratorExpression.cxx
+++ b/Source/cmGeneratorExpression.cxx
@@ -23,7 +23,7 @@ cmGeneratorExpression::cmGeneratorExpression(
this->TargetInfo.compile("^\\$<TARGET"
"(|_SONAME|_LINKER)" // File with what purpose?
"_FILE(|_NAME|_DIR):" // Filename component.
- "([A-Za-z0-9_-]+)" // Target name.
+ "([A-Za-z0-9_.-]+)" // Target name.
">$");
}