Distributing Plugins

To make your plugin available to a wider range of users, you should look into distributing binary builds of it.

Creating Binaries

If your plugin runs and works on multiple platforms, you should provide binary builds for all of the supported platforms.

Qt Creator currently supports:

  • Windows
  • Linux
  • macOS

See the toplevel README.md file in Qt Creator's sources for a more detailed list.

The Qt Creator Plugin wizard already creates a template for GitHub Actions which can be used to create binaries if you host your plugin sources on GitHub. See the README.md that is created at the same location for details.

You can also use the provided GitHub Actions recipe as inspiration for another build service of your choice.

Packaging

The easiest way to package your plugin is to simply provide a zip file that the user can unpack to the correct location for Qt Creator to find it. Qt Creator makes that easy for the user by providing an Install Plugin button in the Help > About Plugins dialog (or Qt Creator > About Plugins on macOS). The user chooses a zip file with the plugin, and Qt Creator unpacks that to the appropriate location.

The following sections describe the options you have for the plugin's contents layout.

Single Library

Using a single library is the preferred and simplest option. You provide a single plugin library file that has all required resources compiled into it with The Qt Resource System. This imposes some limitations because you cannot depend on additional binaries, nor extend some parts of Qt Creator that rely on external files, like the generic highlighter. You can still add wizard templates this way, by adding the path to the resource directory into your QRC file with ProjectExplorer::JsonWizardFactory::addWizardPath(). Registering documentation and translations can be done in similar ways.

Summary

  • Single library as single item in a zip file.
  • Resources compiled into the library with The Qt Resource System.
  • Can be installed locally for a single user for all compatible Qt Creator installations.
  • Can be installed into a Qt Creator installation for all users.

Multiple Files Following Qt Creator's Filesystem Layout

This is a more flexible solution with regards to what the plugin can do, but more complicated to set up. This allows the plugin to ship additional binaries and arbitrary resources.

Since the filesystem layout varies heavily between platforms, the build system of Qt Creator provides variables like IDE_DATA_PATH and IDE_LIBEXEC_PATH. If you build your plugin with CMake, you should use the provided add_qtc_library, add_qtc_executable and similar functions as well.

At runtime you can access these platform dependent locations with Core::ICore::resourcePath() and Core::ICore::libexecPath().

Plugins that are distributed this way cannot be installed locally for a single user. They must be installed into the Qt Creator installation directly.

Summary

  • Multiple files following standard filesystem layout.
  • Use Qt Creator specific variables and functions in build system.
  • Use Core::ICore to find the locations at runtime.
  • Can only be installed into a Qt Creator installation for all users.

© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.