1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-22 12:47:44 +00:00

Fix typos and grammar in BUILDING and README

This commit is contained in:
Joshua Goins 2023-10-08 13:16:34 -04:00
parent be14785e61
commit f1b2241a24
2 changed files with 4 additions and 4 deletions

View file

@ -42,7 +42,7 @@ Fedora's KDE SIG has a repository for KDE Frameworks and Plasma 6 [located here]
### Build from source ### Build from source
The most time consuming option but the one that will definitely work is building the required frameworks from source. See the [page on the KDE Community Wiki](https://community.kde.org/Get_Involved/development/Build_software_with_kdesrc-build) on how to build KDE software yourself. Then, when building Astra feed the kdesrc-build usr directory and it will pick up on these libraries automatically: `-DCMAKE_PREFIX_PATH=/home/<username>/kde/usr`. The most time-consuming option but the one that will definitely work is building the required frameworks from source. See the [page on the KDE Community Wiki](https://community.kde.org/Get_Involved/development/Build_software_with_kdesrc-build) on how to build KDE software yourself. Then, when building Astra feed the kdesrc-build usr directory, and it will pick up on these libraries automatically: `-DCMAKE_PREFIX_PATH=/home/<username>/kde/usr`.
Remember that unless you're running in a kdesrc-build session you need to set some environment variables otherwise Astra will fail to run (because it fails to find some runtime KF6 dependencies). Make sure to `source prefix.sh` from the build directory, or from another kdesrc-build project. Remember that unless you're running in a kdesrc-build session you need to set some environment variables otherwise Astra will fail to run (because it fails to find some runtime KF6 dependencies). Make sure to `source prefix.sh` from the build directory, or from another kdesrc-build project.
@ -53,7 +53,7 @@ Remember that unless you're running in a kdesrc-build session you need to set so
When configuring Astra, there are several optional features you may want to enable or disable: When configuring Astra, there are several optional features you may want to enable or disable:
* `ENABLE_STEAM`: Steam integration, requires the Steamworks SDK. * `ENABLE_STEAM`: Steam integration, requires the Steamworks SDK.
* `ENABLE_GAMEMODE`: Gamemode integration, reqires Gamemode. * `ENABLE_GAMEMODE`: Gamemode integration, requires Gamemode.
To configure, run `cmake` in the source directory: To configure, run `cmake` in the source directory:
@ -62,7 +62,7 @@ $ cd astra
$ cmake -S . -B build $ cmake -S . -B build
``` ```
This command will create a new build directory and configure the source directory (`.`). If you want to enable more options, pass the mnow: This command will create a new build directory and configure the source directory (`.`). If you want to enable more options, pass them now:
```bash ```bash
$ cmake -S . -B build -DENABLE_STEAM=ON $ cmake -S . -B build -DENABLE_STEAM=ON

View file

@ -37,7 +37,7 @@ Distribution packaging is encouraged, so please send an [email through the maili
## Support ## Support
If you have an issue with Astra, please [send an email to the mailing list](https://lists.sr.ht/~redstrate/public-inbox). If you have an issue with Astra, please [email the mailing list](https://lists.sr.ht/~redstrate/public-inbox).
## Building ## Building