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

    From KDE UserBase Wiki
    No edit summary
    No edit summary
     
    (11 intermediate revisions by 3 users not shown)
    Line 1: Line 1:
    ===Building your first KDE application using Kubuntu Linux 20.04===
    <languages />
    <translate>


    ===== Overview =====
    ===Building your first KDE application using Kubuntu Linux 20.04=== <!--T:1-->
     
    ===== Overview ===== <!--T:2-->
     
    <!--T:3-->
    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.
    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.
    <!--T:4-->
    As most Linux distributions do not provide development packages by default, additional steps are required to get 'up and running' and be able to create a KDE Qt application, quickly.
     
    ===== Pre-requisites ===== <!--T:5-->


    ===== Pre-requisites =====
    <!--T:6-->
    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
    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.
    <!--T:7-->
    Upon a Kubuntu installation is up and running, follow the instructions below.


    ===== Instructions =====
    ==== Instructions ==== <!--T:8-->


    ===== 1. Install additional development packages from the Kubuntu repository =====
    ===== 1. Install additional development packages from the Kubuntu repository ===== <!--T:9-->


    Referring to the [https://techbase.kde.org/Development/Tutorials/Setting_Up 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.  
    <!--T:10-->
    Referring to the [https://techbase.kde.org/Development/Tutorials/Setting_Up Setting Up] guide under 'Easy as pie: Package manager', it is much quicker to install the KDE development packages provided from the Kubuntu repository than recompile everything from source.  


    Install the following:
    <!--T:11-->
    Run the following command in 'Konsole' to install additional KDE framework library and development tools:


    <!--T:12-->
    <syntaxhighlight lang="bash">
    <syntaxhighlight lang="bash">
    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
    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
    </syntaxhighlight>
    </syntaxhighlight>


    ===== 2. Install KDevelop=====
    ===== 2. Install KDevelop===== <!--T:13-->


    <!--T:14-->
    <syntaxhighlight lang="bash">
    <syntaxhighlight lang="bash">
    sudo apt install kdevelop
    sudo apt install kdevelop
    </syntaxhighlight>
    </syntaxhighlight>


    =====3. Create a basic KDE Application using an existing template=====
    =====3. Create a basic KDE Application using an existing template===== <!--T:15-->
     
    <!--T:16-->
    [[File:Screenshot 20200616 162007.jpg|thumb|KDE C++ KDevelop Template]]
    [[File:Screenshot 20200616 162007.jpg|thumb|KDE C++ KDevelop Template]]
    <!--T:17-->
    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


    <!--T:18-->
    This example project should now compile and execute without KDevelop complaining.
    This example project should now compile and execute without KDevelop complaining.


    <!--T:19-->
    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.


    === Other Useful Guides and References ===
    ==== Other Useful Guides and References ==== <!--T:20-->
     
    <!--T:21-->
    * [https://community.kde.org/Get_Involved/development/Developing_in_a_virtual_machine Developing in a virtual machine]
     
    <!--T:22-->
    * [https://techbase.kde.org/Development/Tutorials/First_program Building your first program]
     
    <!--T:23-->
    * [https://techbase.kde.org/KDE_Frameworks#Step_1:_Install_the_Framework_you_need An Overview of the KDE Frameworks]


    * Developing in a virtual machine: https://community.kde.org/Get_Involved/development/Developing_in_a_virtual_machine
    <!--T:24-->
    * Building your first program: https://techbase.kde.org/Development/Tutorials/First_program
    * [https://community.kde.org/Get_Involved/development#One-time_setup:_your_development_environment Getting involved]
    * KDE Frameworks: https://techbase.kde.org/KDE_Frameworks#Step_1:_Install_the_Framework_you_need
    </translate>
    * Getting involved: https://community.kde.org/Get_Involved/development#One-time_setup:_your_development_environment

    Latest revision as of 10:46, 14 September 2023

    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 provide development packages by default, additional steps are required to get 'up and running' and be able to create a KDE Qt application, quickly.

    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

    Upon a Kubuntu installation is up and running, follow the 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 quicker to install the KDE development packages provided from the Kubuntu repository than recompile everything from source.

    Run the following command in 'Konsole' to install additional KDE framework library and development tools:

    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