Building KDE software with kde-builder

Compiling with a single command

On this page, you will learn how to use KDE's kde-builder tool to build various types of KDE software once you have a development environment set up.

If you haven't set up kde-builder already, please follow the steps in Set up a development environment before proceeding.

It can take an hour or more to compile a KDE application, Framework, or Plasma itself for the first time. The reason for this is that kde-builder by default has the flag --include-dependencies enabled, so it will ignore all KDE packages that were installed using the distribution's package manager and will instead build from source all KDE modules that are dependencies of the module you told it to build. The next time you want to compile that or any other piece of KDE software, it will be much faster since most of the dependencies will have already been compiled.

If you don't want to build all dependencies (for instance if you are using a rolling release distro that provides recent versions of software), you can:

  • edit the configuration file ~/.config/kde-builder.yaml and set include-dependencies: false
  • or add the --no-include-dependencies flag when running kde-builder

Frameworks

KDE Frameworks are libraries of tools and features that can be used by any application or Plasma itself. A list of all of the frameworks can be found in the KDE Frameworks API documentation.

If you want to build a certain library from KDE Frameworks, simply run kde-builder followed by the name of the library. For example:

kde-builder kirigami

When you tell kde-builder to build a module, it will automatically git clone, configure, build and install the KDE Frameworks that are required by that module.

Applications

KDE Applications like KCalc, Dolphin, Okular, Konsole and Gwenview are standalone apps that can be run on multiple platforms, such as Plasma, GNOME, even macOS and Windows!

Note that the Discover app store (git repo name: plasma-discover) and System Settings app (git repo name: systemsettings) are distributed together with Plasma, but they build like standalone apps using the below instructions. A list of all KDE applications can be found in the KDE Apps website.

To build a single app like KCalc, all you need to do is run:

kde-builder kcalc

This command clones the KDE git repository https://invent.kde.org/utilities/kcalc into the directory ~/kde/src/kcalc, builds all of KCalc's KDE dependencies, and then builds KCalc itself into ~/kde/build/kcalc. If the build is successful, the result is installed into ~/kde/usr. As a result, there is no need to manually install anything; kde-builder installed it for you!

If the build failed for any reason, please see our instructions on how to proceed with Basic Troubleshooting.

To run the self-compiled KCalc, use the kde-builder --run command, which launches the built-from-source version of KCalc (from the directory ~/kde/usr) instead of the version installed using the package manager from your operating system (from the directory /usr).

kde-builder --run kcalc

Did it run? If so, then congratulations, you just compiled your own version of KCalc from source code! 🎉

Plasma

KDE Plasma is the environment in which you can run apps. Plasma is responsible for providing a desktop with wallpaper, app launchers, and widgets; displaying notifications; managing wired and wireless networks; and similar operating-system level tasks.

Plasma has multiple shells: Plasma Desktop for desktop, laptop, and 2-in-1 computers, Plasma Mobile for mobile phones and Plasma Bigscreen for televisions. They all share certain common components, such as a window manager, networking stack, basic graphical components, and so on. These shared components are found in Plasma Workspace.

Plasma Desktop

To build the Plasma Desktop environment and all its necessary dependencies, run the following command:

kde-builder workspace

workspace is an alias that lets you automatically build the projects necessary to run a full Plasma Desktop session. It is different from plasma-workspace, which is only one component among many necessary to build Plasma.

Once built, you can make an entire built-from-source Plasma session accessible from the SDDM login screen. This is a good way to test core Plasma components.

It's also necessary for kde-builder to install the necessary session files and D-Bus files into a root directory. After the biuld process is finished, kde-builder will prompt you for your password so it can install the session files.

After this, you can log out and select your new Plasma session in SDDM's session chooser menu (located in the bottom-left corner of the screen if you're using the Breeze SDDM theme).

Alternatively, you can run the new version of Plasma on top of your existing system for quick testing like so:

source ~/kde/build/plasma-workspace/prefix.sh
~/kde/usr/bin/plasmashell --replace

Plasma Mobile

To build the Plasma Mobile environment, run the following command:

kde-builder mobile

You can run your custom-built Plasma Mobile in an emulated phone session using a phone-sized window within your existing desktop.

Note that you probably want that this emulated phone session does not use the settings of your current user. For example, your emulated phone session should use Angelfish as the default browser, not Mozilla Firefox. To do so, you can run the following on a terminal:

export XDG_RUNTIME_DIR=/tmp/
export QT_QPA_PLATFORM=wayland
export QT_QPA_PLATFORMTHEME=KDE
export QT_WAYLAND_DISABLE_WINDOWDECORATION=1
export XDG_CURRENT_DESKTOP=KDE
export KSCREEN_BACKEND=QScreen
export KDE_FULL_SESSION=1
export KDE_SESSION_VERSION=5
export QT_QUICK_CONTROLS_MOBILE=1
export PLASMA_PLATFORM=phone:handheld
export $(dbus-launch)

Then you can source the Plasma Mobile prefix to load the development environment and run Plasma Mobile in a nested KWin window:

source ~/kde/build/plasma-mobile/prefix.sh
dbus-run-session kwin_wayland --width 360 --height 720 --xwayland "plasmashell -p org.kde.plasma.mobileshell"

Plasma Mobile can also be run on a mobile device itself. For more information, see the Plasma Mobile Development Guide.

Useful flags

Congratulations! You have seen how to:

  • compile standalone apps: kde-builder kcalc
  • compile Plasma Desktop: kde-builder workspace
  • compile Plasma Mobile: kde-builder mobile
  • run what you've built: kde-builder --run kcalc

Now it is possible for you to make changes to the code of the program you want to work on, then simply rebuild the project so it displays your changes.

In this case, it's useful to know a few commonly used flags for kde-builder.

Check the list of things that will be built

To get a general idea of how many and which programs are going to be built for a certain project, you can use the --pretend or --dry-run flag:

kde-builder --pretend kcalc

Rebuild the current project and stay on current branch

Code changes should be done in a separate git branch, not in the master branch.

By default, kde-builder will always attempt to go back to the master branch before rebuilding. To avoid this, you can use the --no-src flag:

kde-builder --no-src kcalc

Rebuild only a single project without updating the source code

As mentioned above, there are times when you want to rebuild the project in the current branch.

By default, kde-builder will rebuild a project and all its dependencies. To avoid this, you can use the --no-include-dependencies flag:

kde-builder --no-include-dependencies --no-src kcalc

Build a specific project while skipping certain modules

Sometimes a particular program somewhere down the dependency chain fails to build and isn't strictly required for a certain project to compile properly, or sometimes you want to use the program installed from your distribution.

In that case, you can avoid building a project by using the --ignore-projects flag, which should come after the module name:

kde-builder kcalc --ignore-projects gpgme

Specifying executable names when running

To run an application, simply use the flag --run.

kde-builder --run discover

If a project provides more than one executable, you can specify the executable you want as long as you have built the module that provides it:

kde-builder kate
kde-builder --run kate-syntax-highlighter --list-themes

Running an application after making changes to one of its dependencies

Let's say you want to make a change to the KConfig library that should change a behavior in KCalc. In this case, you don't want kde-builder to discard your changes to KConfig. So first build KConfig separately, on its own, without doing a source code update:

kde-builder kconfig --no-src --no-include-dependencies --refresh-build

This will build just KConfig and install the needed build products into ~/kde/usr. Now we want to run KCalc in such a way that it makes use of those changed files. Do it like so:

kde-builder kcalc --no-src --no-include-dependencies --refresh-build
kde-builder --run kcalc

Next Steps

Now you can compile anything in KDE from its source code! Time to think about what to do with this superpower...

Perhaps you went through this whole procedure and still have no idea what to work on:

Choose what to work on

Or perhaps you'd like to further adapt kde-builder to your needs by setting up your preferred IDE. If that's what you need, you can visit the following section:

IDE Configuration

If you already know what you want to work on and you are in fact already working on it, then it might be time to learn how to make a merge request and send your changes:

Submit your new software changes for review