diff options
author | Brad King <brad.king@kitware.com> | 2009-05-14 13:27:32 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-05-14 13:27:32 (GMT) |
commit | ee43a1217850e53e3a2082e548c70d7981df61df (patch) | |
tree | 93037e9d169d36071289c7941c1c074de71a3317 /Source/cmDocumentVariables.cxx | |
parent | 248bdadd94348f86c81adf807fbf92557b2b1609 (diff) | |
download | CMake-ee43a1217850e53e3a2082e548c70d7981df61df.zip CMake-ee43a1217850e53e3a2082e548c70d7981df61df.tar.gz CMake-ee43a1217850e53e3a2082e548c70d7981df61df.tar.bz2 |
ENH: Make CMAKE_<LANG>_SIZEOF_DATA_PTR public
The variable was previously documented for internal-use only. This
officially documents it for general use by projects.
Diffstat (limited to 'Source/cmDocumentVariables.cxx')
-rw-r--r-- | Source/cmDocumentVariables.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmDocumentVariables.cxx b/Source/cmDocumentVariables.cxx index e94b79f..cf5337b 100644 --- a/Source/cmDocumentVariables.cxx +++ b/Source/cmDocumentVariables.cxx @@ -1012,8 +1012,10 @@ void cmDocumentVariables::DefineVariables(cmake* cm) cm->DefineProperty ("CMAKE_<LANG>_SIZEOF_DATA_PTR", cmProperty::VARIABLE, - "An internal variable subject to change.", - "This is used in determining the architecture and is subject to change.", + "Size of pointer-to-data types for language <LANG>.", + "This holds the size (in bytes) of pointer-to-data types in the target " + "platform ABI. " + "It is defined for languages C and CXX (C++).", false, "Variables for Languages"); |