summaryrefslogtreecommitdiff
path: root/Modules/DeployQt4.cmake
diff options
context:
space:
mode:
authorMike McQuaid <mike@mikemcquaid.com>2012-02-21 17:10:39 +0000
committerMike McQuaid <mike@mikemcquaid.com>2012-02-21 17:13:59 +0000
commit35cbf23c951e545560e11d79074a66988345c9eb (patch)
tree2b9f00c5dbf49c1c4c217634db31639e85d1fdb7 /Modules/DeployQt4.cmake
parent0ac15353e0220e296aca1bb725fc495c1321e4e6 (diff)
downloadcmake-35cbf23c951e545560e11d79074a66988345c9eb.tar.gz
Ensure libs are passed to BundleUtilities.
Diffstat (limited to 'Modules/DeployQt4.cmake')
-rw-r--r--Modules/DeployQt4.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/DeployQt4.cmake b/Modules/DeployQt4.cmake
index aba339afb6..a5051df4c3 100644
--- a/Modules/DeployQt4.cmake
+++ b/Modules/DeployQt4.cmake
@@ -210,7 +210,7 @@ function(install_qt4_plugin_path plugin executable copy installed_plugin_path_va
endif()
install(FILES "${plugin}" DESTINATION "${plugins_path}" ${configurations} ${component})
endif()
- set(${installed_plugin_path_var} ${${installed_path_var}} "${plugins_path}/${plugin_name}" PARENT_SCOPE)
+ set(${installed_plugin_path_var} "${plugins_path}/${plugin_name}" PARENT_SCOPE)
endif()
endfunction()
@@ -235,7 +235,7 @@ function(install_qt4_plugin plugin executable copy installed_plugin_path_var)
install_qt4_plugin_path("${plugin_release}" "${executable}" "${copy}" "${installed_plugin_path_var}" "${plugins_dir}" "${component}" "Release|RelWithDebInfo|MinSizeRel")
install_qt4_plugin_path("${plugin_debug}" "${executable}" "${copy}" "${installed_plugin_path_var}" "${plugins_dir}" "${component}" "Debug")
endif()
- set(installed_plugin_path_var "${installed_plugin_path_var}" PARENT_SCOPE)
+ set(installed_plugin_paths ${${installed_plugin_path_var}} PARENT_SCOPE)
endfunction()
function(install_qt4_executable executable)