1 # - Functions to help assemble a standalone Qt4 executable.
2 # A collection of CMake utility functions useful for deploying
5 # The following functions are provided by this module:
9 # install_qt4_plugin_path
11 # install_qt4_executable
12 # Requires CMake 2.6 or greater because it uses function and
13 # PARENT_SCOPE. Also depends on BundleUtilities.cmake.
15 # WRITE_QT4_CONF(<qt_conf_dir> <qt_conf_contents>)
16 # Writes a qt.conf file with the <qt_conf_contents> into <qt_conf_dir>.
18 # RESOLVE_QT4_PATHS(<paths_var> [<executable_path>])
19 # Loop through <paths_var> list and if any don't exist resolve them
20 # relative to the <executable_path> (if supplied) or the CMAKE_INSTALL_PREFIX.
22 # FIXUP_QT4_EXECUTABLE(<executable> [<qtplugins> <libs> <dirs> <plugins_dir> <request_qt_conf>])
23 # Copies Qt plugins, writes a Qt configuration file (if needed) and fixes up a
24 # Qt4 executable using BundleUtilities so it is standalone and can be
25 # drag-and-drop copied to another machine as long as all of the system
26 # libraries are compatible.
28 # <executable> should point to the executable to be fixed-up.
30 # <qtplugins> should contain a list of the names or paths of any Qt plugins
33 # <libs> will be passed to BundleUtilities and should be a list of any already
34 # installed plugins, libraries or executables to also be fixed-up.
36 # <dirs> will be passed to BundleUtilities and should contain and directories
37 # to be searched to find library dependencies.
39 # <plugins_dir> allows an custom plugins directory to be used.
41 # <request_qt_conf> will force a qt.conf file to be written even if not needed.
43 # INSTALL_QT4_PLUGIN_PATH(plugin executable copy installed_plugin_path_var <plugins_dir> <component> <configurations>)
44 # Install (or copy) a resolved <plugin> to the default plugins directory
45 # (or <plugins_dir>) relative to <executable> and store the result in
46 # <installed_plugin_path_var>.
48 # If <copy> is set to TRUE then the plugins will be copied rather than
49 # installed. This is to allow this module to be used at CMake time rather than
52 # If <component> is set then anything installed will use this COMPONENT.
54 # INSTALL_QT4_PLUGIN(plugin executable copy installed_plugin_path_var <plugins_dir> <component>)
55 # Install (or copy) an unresolved <plugin> to the default plugins directory
56 # (or <plugins_dir>) relative to <executable> and store the result in
57 # <installed_plugin_path_var>. See documentation of INSTALL_QT4_PLUGIN_PATH.
59 # INSTALL_QT4_EXECUTABLE(<executable> [<qtplugins> <libs> <dirs> <plugins_dir> <request_qt_conf> <component>])
60 # Installs Qt plugins, writes a Qt configuration file (if needed) and fixes up
61 # a Qt4 executable using BundleUtilities so it is standalone and can be
62 # drag-and-drop copied to another machine as long as all of the system
63 # libraries are compatible. The executable will be fixed-up at install time.
64 # <component> is the COMPONENT used for bundle fixup and plugin installation.
65 # See documentation of FIXUP_QT4_BUNDLE.
67 #=============================================================================
68 # Copyright 2011 Mike McQuaid <mike@mikemcquaid.com>
70 # Distributed under the OSI-approved BSD License (the "License");
71 # see accompanying file Copyright.txt for details.
73 # This software is distributed WITHOUT ANY WARRANTY; without even the
74 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
75 # See the License for more information.
76 #=============================================================================
77 # (To distribute this file outside of CMake, substitute the full
78 # License text for the above reference.)
80 # The functions defined in this file depend on the fixup_bundle function
81 # (and others) found in BundleUtilities.cmake
83 include(BundleUtilities)
84 set(DeployQt4_cmake_dir "${CMAKE_CURRENT_LIST_DIR}")
86 function(write_qt4_conf qt_conf_dir qt_conf_contents)
87 set(qt_conf_path "${qt_conf_dir}/qt.conf")
88 message(STATUS "Writing ${qt_conf_path}")
89 file(WRITE "${qt_conf_path}" "${qt_conf_contents}")
92 function(resolve_qt4_paths paths_var)
93 set(executable_path ${ARGV1})
96 foreach(path ${${paths_var}})
98 list(APPEND paths_resolved "${path}")
100 if(${executable_path})
101 list(APPEND paths_resolved "${executable_path}/${path}")
103 list(APPEND paths_resolved "\${CMAKE_INSTALL_PREFIX}/${path}")
107 set(${paths_var} ${paths_resolved} PARENT_SCOPE)
110 function(fixup_qt4_executable executable)
111 set(qtplugins ${ARGV1})
114 set(plugins_dir ${ARGV4})
115 set(request_qt_conf ${ARGV5})
117 message(STATUS "fixup_qt4_executable")
118 message(STATUS " executable='${executable}'")
119 message(STATUS " qtplugins='${qtplugins}'")
120 message(STATUS " libs='${libs}'")
121 message(STATUS " dirs='${dirs}'")
122 message(STATUS " plugins_dir='${plugins_dir}'")
123 message(STATUS " request_qt_conf='${request_qt_conf}'")
126 list(APPEND dirs "${QT_LIBRARY_DIR}")
130 set(qt_conf_dir "${executable}/Contents/Resources")
131 set(executable_path "${executable}")
132 set(write_qt_conf TRUE)
134 get_filename_component(executable_path "${executable}" PATH)
135 if(NOT executable_path)
136 set(executable_path ".")
138 set(qt_conf_dir "${executable_path}")
139 set(write_qt_conf ${request_qt_conf})
142 foreach(plugin ${qtplugins})
143 set(installed_plugin_path "")
144 install_qt4_plugin("${plugin}" "${plugins_dir}" "${executable}" 1 installed_plugin_path)
145 list(APPEND libs ${installed_plugin_path})
149 if(NOT EXISTS "${lib}")
150 message(FATAL_ERROR "Library does not exist: ${lib}")
154 resolve_qt4_paths(libs "${executable_path}")
157 set(qt_conf_contents "[Paths]\nPlugins = ${plugins_dir}")
158 write_qt4_conf("${qt_conf_dir}" "${qt_conf_contents}")
161 fixup_bundle("${executable}" "${libs}" "${dirs}")
164 function(install_qt4_plugin_path plugin executable copy installed_plugin_path_var)
165 set(plugins_dir ${ARGV4})
166 set(component ${ARGV5})
167 set(configurations ${ARGV6})
168 if(EXISTS "${plugin}")
170 set(plugins_dir "${plugins_dir}")
173 set(plugins_dir "PlugIns")
175 set(plugins_dir "plugins")
179 set(plugins_path "${executable}/Contents/${plugins_dir}")
181 get_filename_component(executable_path "${executable}" PATH)
182 if(NOT executable_path)
183 set(executable_path ".")
185 set(plugins_path "${executable_path}/${plugins_dir}")
190 get_filename_component(plugin_path "${plugin}" PATH)
191 get_filename_component(plugin_parent_path "${plugin_path}" PATH)
192 get_filename_component(plugin_parent_dir_name "${plugin_parent_path}" NAME)
193 get_filename_component(plugin_name "${plugin}" NAME)
194 string(TOLOWER "${plugin_parent_dir_name}" plugin_parent_dir_name)
196 if("${plugin_parent_dir_name}" STREQUAL "plugins")
197 get_filename_component(plugin_group "${plugin_path}" NAME)
198 set(${plugin_group_var} "${plugin_group}")
200 set(plugins_path "${plugins_path}/${plugin_group}")
203 file(MAKE_DIRECTORY "${plugins_path}")
204 file(COPY "${plugin}" DESTINATION "${plugins_path}")
206 if(configurations AND (CMAKE_CONFIGURATION_TYPES OR CMAKE_BUILD_TYPE))
207 set(configurations CONFIGURATIONS ${configurations})
209 unset(configurations)
211 install(FILES "${plugin}" DESTINATION "${plugins_path}" ${configurations} ${component})
213 set(${installed_plugin_path_var} ${${installed_path_var}} "${plugins_path}/${plugin_name}" PARENT_SCOPE)
217 function(install_qt4_plugin plugin executable copy installed_plugin_path_var)
218 set(plugins_dir ${ARGV4})
219 set(component ${ARGV5})
220 if(EXISTS "${plugin}")
221 install_qt4_plugin_path("${plugin}" "${executable}" "${copy}" "${installed_plugin_path_var}" "${plugins_dir}" "${component}")
224 string(TOUPPER "QT_${plugin}_LIBRARY" plugin_var)
226 string(TOUPPER "QT_${plugin}_PLUGIN" plugin_var)
228 set(plugin_release_var "${plugin_var}_RELEASE")
229 set(plugin_debug_var "${plugin_var}_DEBUG")
230 set(plugin_release "${${plugin_release_var}}")
231 set(plugin_debug "${${plugin_debug_var}}")
232 if(DEFINED "${plugin_release_var}" AND DEFINED "${plugin_debug_var}" AND NOT EXISTS "${plugin_release}" AND NOT EXISTS "${plugin_debug}")
233 message(WARNING "Qt plugin \"${plugin}\" not recognized or found.")
235 install_qt4_plugin_path("${plugin_release}" "${executable}" "${copy}" "${installed_plugin_path_var}" "${plugins_dir}" "${component}" "Release|RelWithDebInfo|MinSizeRel")
236 install_qt4_plugin_path("${plugin_debug}" "${executable}" "${copy}" "${installed_plugin_path_var}" "${plugins_dir}" "${component}" "Debug")
238 set(installed_plugin_path_var "${installed_plugin_path_var}" PARENT_SCOPE)
241 function(install_qt4_executable executable)
242 set(qtplugins ${ARGV1})
245 set(plugins_dir ${ARGV4})
246 set(request_qt_conf ${ARGV5})
247 set(component ${ARGV6})
249 list(APPEND dirs "${QT_LIBRARY_DIR}")
252 set(component COMPONENT ${component})
257 get_filename_component(executable_absolute "${executable}" ABSOLUTE)
258 if(EXISTS "${QT_QTCORE_LIBRARY_RELEASE}")
259 gp_file_type("${executable_absolute}" "${QT_QTCORE_LIBRARY_RELEASE}" qtcore_type)
260 elseif(EXISTS "${QT_QTCORE_LIBRARY_DEBUG}")
261 gp_file_type("${executable_absolute}" "${QT_QTCORE_LIBRARY_DEBUG}" qtcore_type)
263 if(qtcore_type STREQUAL "system")
264 set(qt_plugins_dir "")
267 if(NOT qtplugins AND QT_LIBRARIES_PLUGINS)
268 set(qtplugins "${QT_LIBRARIES_PLUGINS}")
271 foreach(plugin ${qtplugins})
272 set(installed_plugin_paths "")
273 install_qt4_plugin("${plugin}" "${executable}" 0 installed_plugin_paths "${plugins_dir}" "${component}")
274 list(APPEND libs ${installed_plugin_paths})
277 resolve_qt4_paths(libs)
280 "INCLUDE(\"${DeployQt4_cmake_dir}/DeployQt4.cmake\")
281 SET(BU_CHMOD_BUNDLE_ITEMS TRUE)
282 FIXUP_QT4_EXECUTABLE(\"\${CMAKE_INSTALL_PREFIX}/${executable}\" \"\" \"${libs}\" \"${dirs}\" \"${plugins_dir}\" \"${request_qt_conf}\")"