summaryrefslogtreecommitdiff
path: root/Source/cmAddTestCommand.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2010-12-06 17:11:36 -0500
committerBrad King <brad.king@kitware.com>2010-12-15 14:53:31 -0500
commit4091bca4ecf4a7f9c2099a7d34e125494de60e1c (patch)
tree0c801e0274c19f1e5ca72c1447eb386f69713286 /Source/cmAddTestCommand.h
parentbfb7288f8103298bf4cabb60a13208f95595a7db (diff)
downloadcmake-4091bca4ecf4a7f9c2099a7d34e125494de60e1c.tar.gz
Factor generator expression docs out of add_test
This documentation may be reused wherever generator expressions are supported.
Diffstat (limited to 'Source/cmAddTestCommand.h')
-rw-r--r--Source/cmAddTestCommand.h15
1 files changed, 2 insertions, 13 deletions
diff --git a/Source/cmAddTestCommand.h b/Source/cmAddTestCommand.h
index 79fb481506..1cc86c493f 100644
--- a/Source/cmAddTestCommand.h
+++ b/Source/cmAddTestCommand.h
@@ -13,6 +13,7 @@
#define cmAddTestCommand_h
#include "cmCommand.h"
+#include "cmDocumentGeneratorExpressions.h"
/** \class cmAddTestCommand
* \brief Add a test to the lists of tests to run.
@@ -77,19 +78,7 @@ public:
"\n"
"Arguments after COMMAND may use \"generator expressions\" with the "
"syntax \"$<...>\". "
- "These expressions are evaluted during build system generation and "
- "produce information specific to each generated build configuration. "
- "Valid expressions are:\n"
- " $<CONFIGURATION> = configuration name\n"
- " $<TARGET_FILE:tgt> = main file (.exe, .so.1.2, .a)\n"
- " $<TARGET_LINKER_FILE:tgt> = file used to link (.a, .lib, .so)\n"
- " $<TARGET_SONAME_FILE:tgt> = file with soname (.so.3)\n"
- "where \"tgt\" is the name of a target. "
- "Target file expressions produce a full path, but _DIR and _NAME "
- "versions can produce the directory and file name components:\n"
- " $<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"
+ CM_DOCUMENT_COMMAND_GENERATOR_EXPRESSIONS
"Example usage:\n"
" add_test(NAME mytest\n"
" COMMAND testDriver --config $<CONFIGURATION>\n"