Merge topic 'commands-genex-docs'

7c7b94f Document the use of generator expressions in new commands.
This commit is contained in:
Brad King 2013-01-15 14:34:33 -05:00 committed by CMake Topic Stage
commit a269e65de4
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;