diff options
author | Kitware Robot <kwrobot@kitware.com> | 2013-10-15 15:17:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-10-15 18:12:03 (GMT) |
commit | f051814ed0e63badbfd68049354f36259dbf4b49 (patch) | |
tree | f4e6f885f86c882d723a7dd53d2b702d0c7fdffb /Modules/InstallRequiredSystemLibraries.cmake | |
parent | e94958e99c4dec26c86ce8b76d744c04ba960675 (diff) | |
download | CMake-f051814ed0e63badbfd68049354f36259dbf4b49.zip CMake-f051814ed0e63badbfd68049354f36259dbf4b49.tar.gz CMake-f051814ed0e63badbfd68049354f36259dbf4b49.tar.bz2 |
Convert builtin help to reStructuredText source files
Run the convert-help.bash script to convert documentation:
./convert-help.bash "/path/to/CMake-build/bin"
Then remove it.
Diffstat (limited to 'Modules/InstallRequiredSystemLibraries.cmake')
-rw-r--r-- | Modules/InstallRequiredSystemLibraries.cmake | 49 |
1 files changed, 27 insertions, 22 deletions
diff --git a/Modules/InstallRequiredSystemLibraries.cmake b/Modules/InstallRequiredSystemLibraries.cmake index 2479d68..013a028 100644 --- a/Modules/InstallRequiredSystemLibraries.cmake +++ b/Modules/InstallRequiredSystemLibraries.cmake @@ -1,27 +1,32 @@ +#.rst: +# InstallRequiredSystemLibraries +# ------------------------------ +# +# +# # By including this file, all library files listed in the variable # CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS will be installed with -# install(PROGRAMS ...) into bin for WIN32 and lib -# for non-WIN32. If CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP is set to TRUE -# before including this file, then the INSTALL command is not called. -# The user can use the variable CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS to use a -# custom install command and install them however they want. -# If it is the MSVC compiler, then the microsoft run -# time libraries will be found and automatically added to the -# CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS, and installed. -# If CMAKE_INSTALL_DEBUG_LIBRARIES is set and it is the MSVC -# compiler, then the debug libraries are installed when available. -# If CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY is set then only the debug -# libraries are installed when both debug and release are available. -# If CMAKE_INSTALL_MFC_LIBRARIES is set then the MFC run time -# libraries are installed as well as the CRT run time libraries. -# If CMAKE_INSTALL_SYSTEM_RUNTIME_DESTINATION is set then the libraries are -# installed to that directory rather than the default. -# If CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_NO_WARNINGS is NOT set, then this file -# warns about required files that do not exist. You can set this variable to -# ON before including this file to avoid the warning. For example, the Visual -# Studio Express editions do not include the redistributable files, so if you -# include this file on a machine with only VS Express installed, you'll get -# the warning. +# install(PROGRAMS ...) into bin for WIN32 and lib for non-WIN32. If +# CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP is set to TRUE before including +# this file, then the INSTALL command is not called. The user can use +# the variable CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS to use a custom install +# command and install them however they want. If it is the MSVC +# compiler, then the microsoft run time libraries will be found and +# automatically added to the CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS, and +# installed. If CMAKE_INSTALL_DEBUG_LIBRARIES is set and it is the MSVC +# compiler, then the debug libraries are installed when available. If +# CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY is set then only the debug +# libraries are installed when both debug and release are available. If +# CMAKE_INSTALL_MFC_LIBRARIES is set then the MFC run time libraries are +# installed as well as the CRT run time libraries. If +# CMAKE_INSTALL_SYSTEM_RUNTIME_DESTINATION is set then the libraries are +# installed to that directory rather than the default. If +# CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_NO_WARNINGS is NOT set, then this +# file warns about required files that do not exist. You can set this +# variable to ON before including this file to avoid the warning. For +# example, the Visual Studio Express editions do not include the +# redistributable files, so if you include this file on a machine with +# only VS Express installed, you'll get the warning. #============================================================================= # Copyright 2006-2009 Kitware, Inc. |