Updated HTML tags to Markdown

Signed-off-by: Sergio <42090377+SSUPII@users.noreply.github.com>
This commit is contained in:
Sergio 2022-10-18 16:04:28 +02:00 committed by GitHub
parent 06d28c3eec
commit 17a1e1245c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ Full build instructions will be available on [the website](https://prismlauncher
If you would like to contribute or fix an issue with the Build instructions you will be able to do so [here](https://github.com/PrismLauncher/website/blob/master/src/wiki/development/build-instructions.md).
<h2>Getting the source</h2>
## Getting the source
Clone the source code using git, and grab all the submodules. This is generic for all platforms you want to build on.
```
@ -12,10 +12,10 @@ git clone --recursive https://github.com/PrismLauncher/PrismLauncher
cd PrismLauncher
```
<h2>Linux</h2>
## Linux
This guide will mostly mention dependant packages by their Debian naming and commands are done by a user in the sudoers file.
<h3>Dependencies</h3>
### Dependencies
- A C++ compiler capable of building C++17 code (can be found in the package `build-essential`).
- Qt Development tools 5.12 or newer (on Debian 11 or Debian-based distributions, `qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools libqt5core5a libqt5network5 libqt5gui5`).
@ -32,8 +32,8 @@ In conclusion, to check if all you need is installed (including optional):
sudo apt install build-essential qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools libqt5core5a libqt5network5 libqt5gui5 cmake extra-cmake-modules zlib1g-dev openjdk-17-jdk libgl1-mesa-dev scdoc
```
<h3>Compiling</h3>
<h4>Building and installing on the system</h4>
### Compiling
#### Building and installing on the system
This is usually the suggested way to build the client.
```
@ -42,7 +42,7 @@ cmake --build build -j$(nproc)
sudo cmake --install build
```
<h4>Building a portable binary</h4>
#### Building a portable binary
```
cmake -S . -B build -DCMAKE_INSTALL_PREFIX=install