diff options
author | Brad King <brad.king@kitware.com> | 2016-08-24 18:48:37 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-08-31 13:05:12 (GMT) |
commit | 75139374f07cff43eeab6b4302d560a077440d76 (patch) | |
tree | 58212b4f58be16ed4fe4ef0ba2360eb53e696fc3 /Utilities | |
parent | 95dcc4e474b8ad10fea47c68df88678a6ae10fac (diff) | |
download | CMake-75139374f07cff43eeab6b4302d560a077440d76.zip CMake-75139374f07cff43eeab6b4302d560a077440d76.tar.gz CMake-75139374f07cff43eeab6b4302d560a077440d76.tar.bz2 |
libuv: Install LICENSE file with CMake documentation
When we install using the bundled libuv source, notify users of its
license terms.
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/cmlibuv/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Utilities/cmlibuv/CMakeLists.txt b/Utilities/cmlibuv/CMakeLists.txt index f1faf18..e25ac82 100644 --- a/Utilities/cmlibuv/CMakeLists.txt +++ b/Utilities/cmlibuv/CMakeLists.txt @@ -223,3 +223,5 @@ include_directories( add_library(cmlibuv STATIC ${uv_sources}) target_link_libraries(cmlibuv ${uv_libraries}) set_property(TARGET cmlibuv PROPERTY COMPILE_DEFINITIONS ${uv_defines}) + +install(FILES LICENSE DESTINATION ${CMAKE_DOC_DIR}/cmlibuv) |