Get Involved/development/IDE configuration/Qt Creator: Difference between revisions

From KDE Community Wiki
(Use flat)
Line 10: Line 10:


{{Input|1=<nowiki>
{{Input|1=<nowiki>
global
...                                                                                                     
...                                                                                                     
     include-dependencies true
     include-dependencies true
Line 22: Line 21:
     cmake-options -DCMAKE_BUILD_TYPE=Debug
     cmake-options -DCMAKE_BUILD_TYPE=Debug
...
...
    stop-on-failure false
...
    directory-layout invent
</nowiki>}}
</nowiki>}}


Line 33: Line 29:
Build kcalc, make sure there are no errors:
Build kcalc, make sure there are no errors:
{{Input|1=<nowiki>
{{Input|1=<nowiki>
kdesrc-build --include-dependencies kcalc
kdesrc-build kcalc
</nowiki>}}
</nowiki>}}


Line 52: Line 48:
> File > Close All Projects and Editors
> File > Close All Projects and Editors


> File > Open File or Project <code>~/kde/src/utilities/kcalc/CMakeLists.txt</code>
> File > Open File or Project <code>~/kde/src/kcalc/CMakeLists.txt</code>


Left Sidebar > Switch to Projects mode Ctrl+5 > Manage Kits... Under Manual, remove all kits except "Desktop (default)". E.g. select Manual > "Imported Kit" > press the "Remove" button > press the "Apply" button.
Left Sidebar > Switch to Projects mode Ctrl+5 > Manage Kits... Under Manual, remove all kits except "Desktop (default)". E.g. select Manual > "Imported Kit" > press the "Remove" button > press the "Apply" button.


Button "Import Existing Build..." > Directory: ~/kde/build/utilities/kcalc > Choose.
Button "Import Existing Build..." > Directory: ~/kde/build/kcalc > Choose.


Everything should be configured correctly.
Everything should be configured correctly.

Revision as of 18:20, 30 December 2022

Qt Creator is an IDE from Qt.

A screen recording version is available https://www.youtube.com/watch?v=ASnDeEaXnbI

kdesrc-build

After you configure kdesrc-build and you can correctly build a KDE project such as kcalc.

Edit ~/.config/kdesrc-buildrc . It should look like:

...                                                                                                    
    include-dependencies true
...                                                                                                               
    kdedir ~/kde/usr
...                                                                                                              
    source-dir ~/kde/src
...                                                                                                                
    build-dir ~/kde/build
...                                                                                
    cmake-options -DCMAKE_BUILD_TYPE=Debug
...

The line above is important in order to use the debugger from Qt Creator.

Make sure you have the correct number on the line num-cores .

Build kcalc, make sure there are no errors:

kdesrc-build kcalc

Qt Creator

Install Qt Creator. E.g. download from the Qt website the latest version. Or e.g. from your current Linux distribution's packages. E.g.

apt install qtcreator

Start Qt Creator. E.g. from a terminal

qtcreator &

From the qtcreator main menu

> File > Close All Projects and Editors

> File > Open File or Project ~/kde/src/kcalc/CMakeLists.txt

Left Sidebar > Switch to Projects mode Ctrl+5 > Manage Kits... Under Manual, remove all kits except "Desktop (default)". E.g. select Manual > "Imported Kit" > press the "Remove" button > press the "Apply" button.

Button "Import Existing Build..." > Directory: ~/kde/build/kcalc > Choose.

Everything should be configured correctly.

Left Sidebar > Switch to Projects mode Ctrl+5 > Active project: kcalc. Build & Run: not the Desktop kit. Build Settings > build configuration: "Debug2".

Click on the left sidebar, the button above "Run Ctrl+R". It should show: Project: kcalc. Kit: not the Desktop kit. Deploy: Deploy Configuration. Build: Debug2. Run: kcalc.

CMake configure was run automatically. You can run it again from the Qt Creator main menu > Build > Run CMake.

You can build by pressing the hammer icon on the lower left with tooltip "Build Project Ctrl+B". Or from the Qt Creator main menu > Build > "Build Project Ctrl+B".

Left Sidebar > Switch to Edit mode (Ctrl+2) > Select "Projects" from the combobox. In the "Projects" left hand treeview > kcalc > kcalc > Source Files > double click on the file kcalc.cpp. The file kcalc.cpp will be shown in the editor view. Click inside the source code in text editor.

In the text editor's top bar > function/identifier/method/type/symbols combobox, select the last item: main(int, char***) -> int. Click on the line with the opening curly bracket of the function main. From the main menu > Debug > Set or Remove Breakpoint (F9).

Left Sidebar > Start debugging of startup project. The debugger will start correctly and break on the source code line with the curly bracket.

From the main menu Debug > Step Over (F10)/Step Into(F11)/Step Out (Shift+F11).