diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2014-11-05 20:38:19 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-11-14 16:48:47 (GMT) |
commit | ad6ee426278ebaa9518af4573362a96b0544f4f7 (patch) | |
tree | 97b885dd289069b6490d1a844cad9d8f70979db2 /Source/cmAddCustomTargetCommand.cxx | |
parent | 39baf728b78bfc5ae99258fc8db1c467f01b9ae4 (diff) | |
download | CMake-ad6ee426278ebaa9518af4573362a96b0544f4f7.zip CMake-ad6ee426278ebaa9518af4573362a96b0544f4f7.tar.gz CMake-ad6ee426278ebaa9518af4573362a96b0544f4f7.tar.bz2 |
Rename doing_verbatim to doing_nothing
We are about to introduce another property here, so give this
a better name.
Diffstat (limited to 'Source/cmAddCustomTargetCommand.cxx')
-rw-r--r-- | Source/cmAddCustomTargetCommand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmAddCustomTargetCommand.cxx b/Source/cmAddCustomTargetCommand.cxx index 3235502..64e76f3 100644 --- a/Source/cmAddCustomTargetCommand.cxx +++ b/Source/cmAddCustomTargetCommand.cxx @@ -59,7 +59,7 @@ bool cmAddCustomTargetCommand doing_working_directory, doing_comment, doing_source, - doing_verbatim + doing_nothing }; tdoing doing = doing_command; @@ -90,7 +90,7 @@ bool cmAddCustomTargetCommand } else if(copy == "VERBATIM") { - doing = doing_verbatim; + doing = doing_nothing; verbatim = true; } else if (copy == "COMMENT") |