diff options
author | Konstantin Podsvirov <konstantin@podsvirov.pro> | 2015-07-24 10:15:06 +0300 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-07-27 10:30:41 -0400 |
commit | 068e7962bb8a90ae9ae6b7d6da520a70701820af (patch) | |
tree | 196b9da63a763e5a824ed67bbb2843249af0c556 /Source/QtDialog | |
parent | 42f0155bb9f7cb65c7af103ec1170f4193244d69 (diff) | |
download | cmake-068e7962bb8a90ae9ae6b7d6da520a70701820af.tar.gz |
CMake: Add CMake_INSTALL_DEPENDENCIES option
By default this option is ON. Turn OFF to disable installing runtime
3rd-party dependencies.
Diffstat (limited to 'Source/QtDialog')
-rw-r--r-- | Source/QtDialog/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/QtDialog/CMakeLists.txt b/Source/QtDialog/CMakeLists.txt index ba993eb28a..ad6a7fb621 100644 --- a/Source/QtDialog/CMakeLists.txt +++ b/Source/QtDialog/CMakeLists.txt @@ -39,7 +39,7 @@ if (Qt5Widgets_FOUND) # We need to install platform plugin and add qt.conf for Qt5 on Mac and Windows. # FIXME: This should be part of Qt5 CMake scripts, but unfortunatelly # Qt5 support is missing there. - if(APPLE OR WIN32) + if(CMake_INSTALL_DEPENDENCIES AND (APPLE OR WIN32)) macro(install_qt5_plugin _qt_plugin_name _qt_plugins_var) get_target_property(_qt_plugin_path "${_qt_plugin_name}" LOCATION) if(EXISTS "${_qt_plugin_path}") @@ -213,7 +213,7 @@ if(APPLE) " ${COMPONENT}) endif() -if(APPLE OR WIN32) +if(CMake_INSTALL_DEPENDENCIES AND (APPLE OR WIN32)) # install rules for including 3rd party libs such as Qt # if a system Qt is used (e.g. installed in /usr/lib/), it will not be included in the installation set(fixup_exe "\$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/bin/cmake-gui${CMAKE_EXECUTABLE_SUFFIX}") |