diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-07-26 07:31:14 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-07-26 07:37:12 (GMT) |
commit | 79a7a81327d4e5b7cf9e16021ad4dc98888969eb (patch) | |
tree | 545a98dba1ee62acda6cc7e47f781bdb0e3b9577 | |
parent | 6f6391b771712fa25366763793e5331c77f6e96f (diff) | |
download | CMake-79a7a81327d4e5b7cf9e16021ad4dc98888969eb.zip CMake-79a7a81327d4e5b7cf9e16021ad4dc98888969eb.tar.gz CMake-79a7a81327d4e5b7cf9e16021ad4dc98888969eb.tar.bz2 |
Docs: Document variables for default visibility values.
-rw-r--r-- | Source/cmDocumentVariables.cxx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Source/cmDocumentVariables.cxx b/Source/cmDocumentVariables.cxx index 168d1c6..58b7147 100644 --- a/Source/cmDocumentVariables.cxx +++ b/Source/cmDocumentVariables.cxx @@ -1520,6 +1520,22 @@ void cmDocumentVariables::DefineVariables(cmake* cm) "See that target property for additional information.", false, "Variables that Control the Build"); + cm->DefineProperty + ("CMAKE_<LANG>_VISIBILITY_PRESET", cmProperty::VARIABLE, + "Default value for <LANG>_VISIBILITY_PRESET of targets.", + "This variable is used to initialize the " + "<LANG>_VISIBILITY_PRESET property on all the targets. " + "See that target property for additional information.", + false, + "Variables that Control the Build"); + cm->DefineProperty + ("CMAKE_VISIBILITY_INLINES_HIDDEN", cmProperty::VARIABLE, + "Default value for VISIBILITY_INLINES_HIDDEN of targets.", + "This variable is used to initialize the " + "VISIBILITY_INLINES_HIDDEN property on all the targets. " + "See that target property for additional information.", + false, + "Variables that Control the Build"); // Variables defined when the a language is enabled These variables will // also be defined whenever CMake has loaded its support for compiling (LANG) |