shadPS4/documents/linux_building.md

18 lines
191 B
Markdown
Raw Permalink Normal View History

2023-08-08 21:29:16 +02:00
## Linux
Generate the build directory in the shadPS4 directory:
```
cmake -S . -B build/
```
Enter the directory:
```
cd build/
```
Use make to build the project:
```
make -j$(nproc)
```