diff options
author | Stephen Kelly <steveire@gmail.com> | 2012-09-29 16:29:23 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2012-09-29 16:42:55 (GMT) |
commit | 3172cde640f15855a5e5b4c9833128661e51b5c3 (patch) | |
tree | 0d81cb359773ae51c6c70134d196d9a9424888b4 /Source/cmDocumentGeneratorExpressions.h | |
parent | 8956b7e887a9d4860148997fccd8e08ea7fcb2f3 (diff) | |
download | CMake-3172cde640f15855a5e5b4c9833128661e51b5c3.zip CMake-3172cde640f15855a5e5b4c9833128661e51b5c3.tar.gz CMake-3172cde640f15855a5e5b4c9833128661e51b5c3.tar.bz2 |
Fix the layout of the generator expression documentation.
Diffstat (limited to 'Source/cmDocumentGeneratorExpressions.h')
-rw-r--r-- | Source/cmDocumentGeneratorExpressions.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/cmDocumentGeneratorExpressions.h b/Source/cmDocumentGeneratorExpressions.h index 6b0cf49..445fd0e 100644 --- a/Source/cmDocumentGeneratorExpressions.h +++ b/Source/cmDocumentGeneratorExpressions.h @@ -35,18 +35,20 @@ " $<TARGET_FILE_DIR:tgt>/$<TARGET_FILE_NAME:tgt>\n" \ " $<TARGET_LINKER_FILE_DIR:tgt>/$<TARGET_LINKER_FILE_NAME:tgt>\n" \ " $<TARGET_SONAME_FILE_DIR:tgt>/$<TARGET_SONAME_FILE_NAME:tgt>\n" \ + "\n" \ " $<TARGET_PROPERTY:tgt,prop> = The value of the property prop\n" \ - "the target tgt. Note that tgt is not added as a dependency of the " \ - "target this expression is evaluated on.\n" \ + "on the target tgt. Note that tgt is not added as a dependency of\n" \ + "the target this expression is evaluated on.\n" \ "Boolean expressions:\n" \ " $<AND:?[,?]...> = '1' if all '?' are '1', else '0'\n" \ " $<OR:?[,?]...> = '0' if all '?' are '0', else '1'\n" \ " $<NOT:?> = '0' if '?' is '1', else '1'\n" \ "where '?' is always either '0' or '1'.\n" \ + "" #define CM_DOCUMENT_COMMAND_GENERATOR_EXPRESSIONS \ CM_DOCUMENT_ADD_TEST_GENERATOR_EXPRESSIONS \ - "Expressions with an implicit 'this' target:" \ + "Expressions with an implicit 'this' target:\n" \ " $<TARGET_PROPERTY:prop> = The value of the property prop on\n" \ "the target on which the generator expression is evaluated.\n" \ "" |