diff options
author | Brad King <brad.king@kitware.com> | 2017-06-28 12:39:28 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2017-06-28 12:39:37 (GMT) |
commit | 132539af36b9e57444a45a107206ba6685042d16 (patch) | |
tree | 3cc05611ef975fbc84d4463f4b5ea2be75b55293 | |
parent | 9ab399ba8226f167fa9af761c610f2390461adab (diff) | |
parent | adbd1468cb2ede72c32ad96b7583f3a1f04b6926 (diff) | |
download | CMake-132539af36b9e57444a45a107206ba6685042d16.zip CMake-132539af36b9e57444a45a107206ba6685042d16.tar.gz CMake-132539af36b9e57444a45a107206ba6685042d16.tar.bz2 |
Merge topic 'document_CMAKE_MSVCIDE_RUN_PATH'
adbd1468 Help: Document the CMAKE_MSVCIDE_RUN_PATH variable.
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !1011
-rw-r--r-- | Help/manual/cmake-variables.7.rst | 1 | ||||
-rw-r--r-- | Help/variable/CMAKE_MSVCIDE_RUN_PATH.rst | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/Help/manual/cmake-variables.7.rst b/Help/manual/cmake-variables.7.rst index 1a2726d..ec8fedf 100644 --- a/Help/manual/cmake-variables.7.rst +++ b/Help/manual/cmake-variables.7.rst @@ -319,6 +319,7 @@ Variables that Control the Build /variable/CMAKE_MODULE_LINKER_FLAGS_CONFIG /variable/CMAKE_MODULE_LINKER_FLAGS_CONFIG_INIT /variable/CMAKE_MODULE_LINKER_FLAGS_INIT + /variable/CMAKE_MSVCIDE_RUN_PATH /variable/CMAKE_NINJA_OUTPUT_PATH_PREFIX /variable/CMAKE_NO_BUILTIN_CHRPATH /variable/CMAKE_NO_SYSTEM_FROM_IMPORTED diff --git a/Help/variable/CMAKE_MSVCIDE_RUN_PATH.rst b/Help/variable/CMAKE_MSVCIDE_RUN_PATH.rst new file mode 100644 index 0000000..22e727f --- /dev/null +++ b/Help/variable/CMAKE_MSVCIDE_RUN_PATH.rst @@ -0,0 +1,10 @@ +CMAKE_MSVCIDE_RUN_PATH +---------------------- + +Extra PATH locations that should be used when executing +:command:`add_custom_command` or :command:`add_custom_target` when using the +:generator:`Visual Studio 9 2008` (or above) generator. This allows +for running commands and using dll's that the IDE environment is not aware of. + +If not set explicitly the value is initialized by the ``CMAKE_MSVCIDE_RUN_PATH`` +environment variable, if set, and otherwise left empty. |