diff options
author | Brad King <brad.king@kitware.com> | 2005-09-21 17:31:43 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-09-21 17:31:43 (GMT) |
commit | c59d56f653171eea241179c45dde1c0f0e9606be (patch) | |
tree | 89c48e60305ddd7261b4df18145684039c9c062b /Source/cmake.h | |
parent | 059f62c5ea04ccb699e0cde7127232fe607d16a6 (diff) | |
download | CMake-c59d56f653171eea241179c45dde1c0f0e9606be.zip CMake-c59d56f653171eea241179c45dde1c0f0e9606be.tar.gz CMake-c59d56f653171eea241179c45dde1c0f0e9606be.tar.bz2 |
BUG: Corrected and updated documentation of the -P option, -C option, GET_TARGET_PROPERTY command, and GET_SOURCE_FILE_PROPERTY command.
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index 0d6f7d9..730d297 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -318,13 +318,15 @@ private: }; #define CMAKE_STANDARD_OPTIONS_TABLE \ - {"-C <initial-cache>", "Pre-load cmake cache from given file.", \ + {"-C <initial-cache>", "Pre-load a script to populate the cache.", \ "When cmake is first run in an empty build tree, it creates a " \ "CMakeCache.txt file and populates it with customizable settings " \ "for the project. This option may be used to specify a file from " \ "which to load cache entries before the first pass through " \ "the project's cmake listfiles. The loaded entries take priority " \ - "over the project's default values."}, \ + "over the project's default values. The given file should be a CMake " \ + "script containing SET commands that use the CACHE option, " \ + "not a cache-format file."}, \ {"-D <var>:<type>=<value>", "Create a cmake cache entry.", \ "When cmake is first run in an empty build tree, it creates a " \ "CMakeCache.txt file and populates it with customizable settings " \ |