Document the use of generator expressions in new commands.

This commit is contained in:
Stephen Kelly 2013-01-13 10:04:40 +01:00
parent 9822f8c931
commit 7c7b94f21f
3 changed files with 7 additions and 0 deletions

View File

@ -69,6 +69,9 @@ public:
"INTERFACE_COMPILE_DEFINITIONS from. "
"Repeated calls for the same <target> append items in the order called."
"\n"
"Arguments to target_compile_definitions may use \"generator "
"expressions\" with the syntax \"$<...>\". "
CM_DOCUMENT_COMMAND_GENERATOR_EXPRESSIONS
;
}

View File

@ -73,6 +73,9 @@ public:
"directories must be absolute paths, not relative paths. "
"Repeated calls for the same <target> append items in the order called."
"\n"
"Arguments to target_include_directories may use \"generator "
"expressions\" with the syntax \"$<...>\". "
CM_DOCUMENT_COMMAND_GENERATOR_EXPRESSIONS
;
}

View File

@ -14,6 +14,7 @@
#define cmTargetPropCommandBase_h
#include "cmCommand.h"
#include "cmDocumentGeneratorExpressions.h"
class cmTarget;