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/cmMacroCommand.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/cmMacroCommand.h')
-rw-r--r-- | Source/cmMacroCommand.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmMacroCommand.h b/Source/cmMacroCommand.h index 2cf0e5b..aedbb4d 100644 --- a/Source/cmMacroCommand.h +++ b/Source/cmMacroCommand.h @@ -95,9 +95,9 @@ public: "holds the list of arguments past the last expected argument. " "Note that the parameters to a macro and values such as ARGN " "are not variables in the usual CMake sense. They are string " - "replacements much like the c preprocessor would do with a " - "macro. If you want true CMake variables you should look at " - "the function command." + "replacements much like the C preprocessor would do with a macro. " + "If you want true CMake variables and/or better CMake scope control " + "you should look at the function command." "\n" "See the cmake_policy() command documentation for the behavior of " "policies inside macros." |