diff options
author | Brad King <brad.king@kitware.com> | 2007-05-18 09:18:09 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-05-18 09:18:09 -0400 |
commit | ea66edaf5e8af4a3bd0b9809d0a7b26df8ff4196 (patch) | |
tree | 64dc8ffa5c94ef885b229d8434c8d2434ef79509 /Tests/CustomCommand/check_command_line.c.in | |
parent | 07fe611fc6607dced063858aa850cdb1ef59130c (diff) | |
download | cmake-ea66edaf5e8af4a3bd0b9809d0a7b26df8ff4196.tar.gz |
ENH: Added quick means to turn on verbose output for debugging this test.
Diffstat (limited to 'Tests/CustomCommand/check_command_line.c.in')
-rw-r--r-- | Tests/CustomCommand/check_command_line.c.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Tests/CustomCommand/check_command_line.c.in b/Tests/CustomCommand/check_command_line.c.in index 72b34c7f03..e0e0d21423 100644 --- a/Tests/CustomCommand/check_command_line.c.in +++ b/Tests/CustomCommand/check_command_line.c.in @@ -21,7 +21,9 @@ int main(int argc, const char* argv[]) } else { - /*printf("[%s]\n", *a);*/ +#if defined(CHECK_COMMAND_LINE_VERBOSE) + printf("[%s]\n", *a); +#endif } } if(*a || *e) |