CLion
C++ IDE from JetBrains.
Last updated
C++ IDE from JetBrains.
Last updated
is a proprietary IDE for C++ from JetBrains.
This article will show you how to configure and develop KDE projects in CLion. We will use KCalc as an example project.
Follow the documentation.
If you are using Arch Linux, you can install the AUR package or .
To allow kde-builder to generate CLion project files, add the following to your ~/.config/kdesrc-buildrc
:
Instead of enabling the generate-clion-project-config
option globally, you may choose to enable it only for a single project:
Ensure you have successfully built kcalc following the kde-builder instructions.
In case you enabled generate-clion-project-config
after you have built kcalc previously, or do not want to edit your config, you can generate CLion configs by running:
From the CLion main menu, select File | Open.
An "Open File or Project" dialog will show up. Choose ~/kde/src/kcalc
directory and press OK.
{{< figure alt="Selecting directory in Open File or Project window" width="400px" src="open-file-or-project-directory.png" >}}
The "Open Project Wizard" window will open:
{{< figure alt="Open Project Wizard window" width="800px" src="open-project-wizard-window.png" >}}
If the project has a CMakePresets.json
in its root directory (KCalc does), you will see many greyed-out CMake Profiles. They are read only, and disabled by default. You do not need them. Scroll the list down to be able to see the "KDE Builder cmake profile", which you want to select.
The very first time you use a kde-builder generated CLion project, you will need to create a toolchain named "KDE Builder toolchain". Press "Manage toolchains" link, and follow the next section instructions.
If you have done that, proceed by pressing OK.
Creating the toolchain
The "Toolchains" window will appear:
{{< figure alt="Toolchains window" width="700px" src="kb-toolchain-creation.png" >}}
Press "+" icon, and select "System" from the list.
In the Name field, enter exactly "KDE Builder toolchain".
In the CMake field, enter "cmake".
In the Debugger field, select "Custom GDB executable" and enter "gdb".
You can specify the full path to the tools or use bundled tools for CMake and GDB. But note that the toolchain name should be exactly that, because it is used in generated project configurations.
Press OK.
In the upper right corner of CLion's window, you will see that "KDE Builder cmake profile" is applied, and "KDE Builder run/debug configuration" is applied.
{{< figure alt="IDE window with selected run configuration" width="900px" src="kb-run-debug-conf-applied.png" >}}
You can now start developing. Set a breakpoint, start a debugging session, create your own run/debug configuration based on original, and so on.
You can install it from the store.kde.org (in the Configure Dolphin choose Context Menu, then press Download New Services... button. Search for Jetbrains Dolphin Plugin by alex1701c).
{{< figure width="500px" src="jb-dolphin-plugin.png" >}}
{{< figure width="500px" src="jb-runner-plugin.png" >}}
Qt6Renderer
GNU GetText files support (*.po)
For example, you search the strings in local language, to find the place in code where it is used, you find it in *.po files. They contain stanzas like this:
You want to quickly jump to the source file. That source file (part/part.cpp:132
) becomes a clickable link if you install the plugin.
When developing a library, it may be convenient to launch some application that uses it, from the current project. For example, you work with Ark's libraries used in Dolphin context menu actions. You can make your run configuration to launch custom binary - dolphin.
To do that, do the following:
Open Run/Debug Configurations
window
Click "Copy" icon to create a new run configuration based on the run configuration we have generated with kde-builder.
The new configuration will appear.
Give it a meaningful name, for example ark (run dolphin).
In the Executable field, specify path to dolphin binary: /home/username/kde/build/dolphin/bin/dolphin.
Press OK.
Now when you run this configuration, the Ark will be built, but Dolphin will be launched.
It is possible to show a normal window titlebar. For this, open the registry (double-tap Shift, search for "Registry") and disable the property ide.linux.hide.native.title
.
You need to enable this key in Registry: credentialStore.linux.prefer.kwallet
. It allows to use KWallet if KWallet and SecretService are both available.
is a service menu plugin (context menu action) which allows you to easily open folders as IDE projects.
If you are using Arch Linux, you will prefer to install from AUR: .
You can install search plugin to be able to quickly open recent projects in JetBrains IDEs.
If you are using Arch Linux, you will prefer to install from AUR: .
Currently, the Qt classes do not support pretty printing in debugger in CLion out of the box. See for more information.
You can install plugin.
Install the plugin. It will make the source lines in the po files clickable.