Archive:Build your first KDE application on Kubuntu: Difference between revisions

From KDE UserBase Wiki
Line 32: Line 32:


=====3. Create a basic KDE Application using an existing template=====
=====3. Create a basic KDE Application using an existing template=====
 
[[File:Screenshot 20200616 162007.jpg|thumb|KDE C++ KDevelop Template]]
Now you should be in a position to be able to create a simple KDE application in KDevelop by performing the following in the menu: Project -> New From Template -> Qt -> Graphical -> C++ KDE Framework
Now you should be in a position to be able to create a simple KDE application in KDevelop by performing the following in the menu: Project -> New From Template -> Qt -> Graphical -> C++ KDE Framework


Line 38: Line 38:


You are now up and running! It should also now be possible to use Qt Creator should this be a preferred option.
You are now up and running! It should also now be possible to use Qt Creator should this be a preferred option.
[[File:Screenshot 20200616 162007.jpg|thumb|KDE C++ KDevelop Template]]


=== Other Useful Guides and References ===
=== Other Useful Guides and References ===

Revision as of 16:06, 16 June 2020

Under Construction

This is a new page, currently under construction!


Building your first KDE application using Kubuntu Linux 20.04

Overview

This document aims to provide an overview of the pre-requisites required to create, compile, and execute a simple KDE Application (windowed GUI application) using Kubuntu 20.04.

As most Linux distributions, do not install the necessary development packages by default, additional steps are required to get 'up and running' and be able to create a KDE Qt application.

Pre-requisites

It is assumed that a 'Minimal' installation of Kubuntu is performed. Refer to this guide on how to set up a Virtual Machine for development: https://community.kde.org/Get_Involved/development/Developing_in_a_virtual_machine

One a minimal installation is up and running, follow the additional instructions below.

Instructions

1. Install additional development packages from the Kubuntu repository

Referring to the Setting Up guide under 'Easy as pie: Package manager', it is much easier to install the KDE development packages provided from the Kubuntu repository than recompile everything from source.

Install the following:

sudo apt install libkf5syntaxhighlighting-dev cmake clang-8 libkf5config-dev libkf5auth-dev libkf5package-dev libkf5declarative-dev libkf5coreaddons-dev libkf5dbusaddons-dev libkf5kcmutils-dev libkf5i18n-dev libqt5core5a libqt5widgets5 libqt5gui5 libqt5qml5 extra-cmake-modules qtbase5-dev kirigami2-dev libkf5kirigami2-5 libkf5notifications-dev qml-module-org-kde-kirigami2 qml-module-qtquick-dialogs qml-module-qtquick-controls2 cmake build-essential gettext libkf5crash-dev libkf5doctools-dev
2. Install KDevelop
sudo apt install kdevelop
3. Create a basic KDE Application using an existing template
KDE C++ KDevelop Template

Now you should be in a position to be able to create a simple KDE application in KDevelop by performing the following in the menu: Project -> New From Template -> Qt -> Graphical -> C++ KDE Framework

This example project should now compile and execute without KDevelop complaining.

You are now up and running! It should also now be possible to use Qt Creator should this be a preferred option.

Other Useful Guides and References