diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-02-25 23:50:49 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-05-16 17:36:31 (GMT) |
commit | a7ba4520c7b15dc9f56d2c4718748b79b12c0c89 (patch) | |
tree | 68f4bd469d6bf24fae28fc4b8e8a3c8f859016aa /Source/cmDocumentGeneratorExpressions.h | |
parent | 96ec3147bbafd52b18bcf532b0da8727cd3c8104 (diff) | |
download | CMake-a7ba4520c7b15dc9f56d2c4718748b79b12c0c89.zip CMake-a7ba4520c7b15dc9f56d2c4718748b79b12c0c89.tar.gz CMake-a7ba4520c7b15dc9f56d2c4718748b79b12c0c89.tar.bz2 |
Add the JOIN generator expression.
This generator expression joins a list with a separator. The separator
may contain arbitrary content, such as commas, which is ordinarily a
delimiter in the generator expression syntax.
Diffstat (limited to 'Source/cmDocumentGeneratorExpressions.h')
-rw-r--r-- | Source/cmDocumentGeneratorExpressions.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmDocumentGeneratorExpressions.h b/Source/cmDocumentGeneratorExpressions.h index 6cc3f25..ac52db0 100644 --- a/Source/cmDocumentGeneratorExpressions.h +++ b/Source/cmDocumentGeneratorExpressions.h @@ -28,6 +28,8 @@ "strings which contain a ',' for example.\n" \ " $<SEMICOLON> = A literal ';'. Used to prevent " \ "list expansion on an argument with ';'.\n" \ + " $<JOIN:list,...> = joins the list with the content of " \ + "\"...\"\n" \ " $<TARGET_NAME:...> = Marks ... as being the name of a " \ "target. This is required if exporting targets to multiple " \ "dependent export sets. The '...' must be a literal name of a " \ |