1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 10:05:59 +02:00
tldr/pages/linux/kdesrc-build.md
Managor 9f69a3c857
kdesrc-{build, run}: update page (#11488)
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-11-13 14:54:15 +01:00

763 B

kdesrc-build

Easily build KDE components from its source repositories. More information: https://invent.kde.org/sdk/kdesrc-build.

  • Initialize kdesrc-build:

kdesrc-build --initial-setup

  • Compile a KDE component and its dependencies from source:

kdesrc-build {{component_name}}

  • Compile a component without updating its local code and without compiling its dependencies:

kdesrc-build --no-src --no-include-dependencies {{component_name}}

  • Refresh the build directories before compiling:

kdesrc-build --refresh-build {{component_name}}

  • Resume compilation from a specific dependency:

kdesrc-build --resume-from={{dependency_component}} {{component_name}}

  • Print full compilation info:

kdesrc-build --debug {{component_name}}