From 4a4b93e454112044d0aebe745d5ae95d566a7cbb Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Tue, 8 Aug 2023 22:29:16 +0300 Subject: [PATCH] Create linux_building --- documents/linux_building | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 documents/linux_building diff --git a/documents/linux_building b/documents/linux_building new file mode 100644 index 00000000..2d1cc870 --- /dev/null +++ b/documents/linux_building @@ -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) +```