diff options
author | Andreas Mohr <andim2@users.sourceforge.net> | 2012-11-07 16:12:03 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-11-07 19:10:56 (GMT) |
commit | 07d5e4b871dae45a3ffcc839965dabf495679e1b (patch) | |
tree | b3b6dbf89ba169d1c4e824c3b3109f57646004eb /Source/cmMessageCommand.h | |
parent | 965de974b24ecafc420885eff68a3917471ff181 (diff) | |
download | CMake-07d5e4b871dae45a3ffcc839965dabf495679e1b.zip CMake-07d5e4b871dae45a3ffcc839965dabf495679e1b.tar.gz CMake-07d5e4b871dae45a3ffcc839965dabf495679e1b.tar.bz2 |
Documentation: Clarify some command descriptions
- file(WRITE): add configure_file() decoupling hint
- function(): definitely mention PARENT_SCOPE
- include_directories(): mention possible results of SYSTEM setting
- macro(): mention scope specifics of function()
- message(): improve SEND_ERROR / FATAL_ERROR docs, since people said it's not obvious
Diffstat (limited to 'Source/cmMessageCommand.h')
-rw-r--r-- | Source/cmMessageCommand.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmMessageCommand.h b/Source/cmMessageCommand.h index 9f01eaf..fc61810 100644 --- a/Source/cmMessageCommand.h +++ b/Source/cmMessageCommand.h @@ -67,8 +67,9 @@ public: " STATUS = Incidental information\n" " WARNING = CMake Warning, continue processing\n" " AUTHOR_WARNING = CMake Warning (dev), continue processing\n" - " SEND_ERROR = CMake Error, continue but skip generation\n" - " FATAL_ERROR = CMake Error, stop all processing\n" + " SEND_ERROR = CMake Error, continue processing,\n" + " but skip generation\n" + " FATAL_ERROR = CMake Error, stop processing and generation\n" "The CMake command-line tool displays STATUS messages on stdout " "and all other message types on stderr. " "The CMake GUI displays all messages in its log area. " |