MantisBT - CMake | |||||
View Issue Details | |||||
ID | Project | Category | View Status | Date Submitted | Last Update |
0013129 | CMake | Modules | public | 2012-04-13 16:04 | 2012-09-03 16:01 |
Reporter | Daniel Franke | ||||
Assigned To | Clinton Stimpson | ||||
Priority | normal | Severity | minor | Reproducibility | always |
Status | closed | Resolution | no change required | ||
Platform | OS | OS Version | |||
Product Version | CMake 2.8.7 | ||||
Target Version | Fixed in Version | ||||
Summary | 0013129: [patch] DeployQt4: wrong arguments to install_qt4_plugin | ||||
Description | The function DeployQt4.cmake(install_qt4_plugin) has this signature: function(install_qt4_plugin plugin executable copy installed_plugin_path_var) but at line 144 of DeployQt4.cmake it is used as: install_qt4_plugin("${plugin}" "${plugins_dir}" "${executable}" 1 installed_plugin_path) This leads to strange results on Windows (a directory 'installed_plugin_path' is created instead of ${plugins_dir}). This trivial patch fixes my immediate problem, didn't test for side effects on other platforms: Index: DeployQt4.cmake =================================================================== --- DeployQt4.cmake (revision 275) +++ DeployQt4.cmake (working copy) @@ -141,7 +141,7 @@ foreach(plugin ${qtplugins}) set(installed_plugin_path "") - install_qt4_plugin("${plugin}" "${plugins_dir}" "${executable}" 1 installed_plugin_path) + install_qt4_plugin("${plugin}" "${executable}" 1 installed_plugin_path "${plugins_dir}") list(APPEND libs ${installed_plugin_path}) endforeach() | ||||
Steps To Reproduce | |||||
Additional Information | |||||
Tags | No tags attached. | ||||
Relationships | |||||
Attached Files | |||||
Issue History | |||||
Date Modified | Username | Field | Change | ||
2012-04-13 16:04 | Daniel Franke | New Issue | |||
2012-04-13 16:31 | Clinton Stimpson | Note Added: 0029151 | |||
2012-04-13 16:44 | Rolf Eike Beer | Assigned To | => Clinton Stimpson | ||
2012-04-13 16:44 | Rolf Eike Beer | Status | new => assigned | ||
2012-04-13 16:45 | Clinton Stimpson | Note Added: 0029152 | |||
2012-04-13 16:45 | Clinton Stimpson | Status | assigned => resolved | ||
2012-04-13 16:45 | Clinton Stimpson | Resolution | open => no change required | ||
2012-09-03 16:01 | David Cole | Note Added: 0030851 | |||
2012-09-03 16:01 | David Cole | Status | resolved => closed |
Notes | |||||
|
|||||
|
|
||||
|
|||||
|
|
||||
|
|||||
|
|