1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 22:02:09 +02:00
tldr/pages/linux/kdesrc-build.md
Managor 435cb8ce29
*: fix style guide issues part 3 (#15786)
Co-authored-by: Darío Hereñú <magallania@gmail.com>
2025-03-07 13:43:12 +02:00

36 lines
1,015 B
Markdown

# kdesrc-build
> Easily build KDE components from its source repositories.
> More information: <https://docs.kde.org/trunk5/en/kdesrc-build/kdesrc-build/index.html>.
- 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}}`
- Run a component with a specified executable name:
`kdesrc-build --run --exec {{executable_name}} {{component_name}}`
- Build all configured components:
`kdesrc-build`
- Use system libraries in place of a component if it fails to build:
`kdesrc-build --no-stop-on-failure {{component_name}}`