-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: spageektti <[email protected]> Co-authored-by: K.B.Dharun Krishna <[email protected]>
- Loading branch information
1 parent
77b778f
commit 5b64e2a
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# kde-builder | ||
|
||
> Easily build KDE components from its source repositories. | ||
> Drop-in replacement for `kdesrc-build`. | ||
> More information: <https://kde-builder.kde.org/en/cmdline/cmdline-usage.html>. | ||
- Initialize `kde-builder`: | ||
|
||
`kde-builder --initial-setup` | ||
|
||
- Compile a KDE component and its dependencies from the source: | ||
|
||
`kde-builder {{component_name}}` | ||
|
||
- Compile a component without updating its local code and without compiling its [D]ependencies: | ||
|
||
`kde-builder --no-src --no-include-dependencies {{component_name}}` | ||
|
||
- [r]efresh the build directories before compiling: | ||
|
||
`kde-builder --refresh-build {{component_name}}` | ||
|
||
- Resume compilation from a specific dependency: | ||
|
||
`kde-builder --resume-from={{dependency_component}} {{component_name}}` | ||
|
||
- Run a component with a specified executable name: | ||
|
||
`kde-builder --run {{executable_name}}` | ||
|
||
- Build all configured components: | ||
|
||
`kde-builder` | ||
|
||
- Use system libraries in place of a component if it fails to build: | ||
|
||
`kde-builder --no-stop-on-failure {{component_name}}` |