Create linux_building

This commit is contained in:
georgemoralis 2023-08-08 22:29:16 +03:00 committed by GitHub
parent 6db401cda6
commit 4a4b93e454
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

16
documents/linux_building Normal file
View File

@ -0,0 +1,16 @@
## 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)
```