mirror of
https://github.com/pound-emu/pound.git
synced 2025-12-13 04:36:57 +00:00
Fixed compguid.md docs
This commit is contained in:
parent
8250c050a6
commit
625fc7d20a
1 changed files with 24 additions and 11 deletions
|
|
@ -18,34 +18,47 @@
|
|||
|
||||
Run the following in your terminal:
|
||||
|
||||
``sudo apt update
|
||||
```bash
|
||||
sudo apt update
|
||||
|
||||
sudo apt install -y ninja-build clang lld cmake ccache libx11-dev libxext-dev libxrandr-dev libxcursor-dev libxi-dev libxinerama-dev libwayland-dev libxkbcommon-dev wayland-protocols git``
|
||||
sudo apt install -y ninja-build clang lld cmake ccache libx11-dev libxext-dev libxrandr-dev libxcursor-dev libxi-dev libxinerama-dev libwayland-dev libxkbcommon-dev wayland-protocols git
|
||||
```
|
||||
|
||||
Now run the following:
|
||||
|
||||
``git clone https://www.github.com/pound-emu/pound.git``
|
||||
```bash
|
||||
git clone https://www.github.com/pound-emu/pound.git
|
||||
cd pound
|
||||
```
|
||||
|
||||
and then:
|
||||
|
||||
``cmake -G Ninja -B (where you put pound source code) -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++``
|
||||
`cmake -G Ninja -B . -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++`
|
||||
|
||||
## Linux (Arch/SteamOS)
|
||||
|
||||
Run the following commands in your terminal:
|
||||
``
|
||||
|
||||
```bash
|
||||
sudo pacman -S ninja clang lld cmake ccache libx11 libxext libxrandr libxcursor libxi libxinerama libxkbcommon wayland-protocols git
|
||||
``
|
||||
|
||||
```
|
||||
|
||||
Now:
|
||||
``git clone https://www.github.com/pound-emu/pound.git``
|
||||
|
||||
```bash
|
||||
git clone https://www.github.com/pound-emu/pound.git --recursive
|
||||
```
|
||||
|
||||
then:
|
||||
``
|
||||
|
||||
```bash
|
||||
cd pound
|
||||
``
|
||||
|
||||
```
|
||||
|
||||
lastly:
|
||||
``
|
||||
|
||||
```bash
|
||||
cmake -G Ninja -B . -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++
|
||||
``
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue