Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

41
linux/kdesrc-build Normal file
View File

@@ -0,0 +1,41 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# 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}}`
- 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}}`