2024-02-23 22:32:32 +01:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: 2024 shadPS4 Emulator Project
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
-->
|
2023-08-08 21:29:51 +02:00
|
|
|
|
2024-05-03 14:49:13 +02:00
|
|
|
## Build shadPS4 for Linux
|
2023-08-08 21:29:16 +02:00
|
|
|
|
|
|
|
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)
|
|
|
|
```
|