Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,22 @@
This project can be built by using the Meson build system. For more information
about the system, please visit the following location: <https://mesonbuild.com/>

Download source files and dependencies:
`git clone --recurse-submodules https://github.com/ps2homebrew/pfsshell.git`

Create build folder and build object files:
`meson setup build`

Also build pfsfuse or other features:
`meson setup -Denable_<FEATURE> build`
Replace `<FEATURE>` with a feature like pfsfuse - `meson setup -Denable_pfsfuse build`

Build executable(s) and so/dll files:
```

Check notice on line 171 in README.md

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

README.md#L171

Expected: indented; Actual: fenced

Check notice on line 171 in README.md

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

README.md#L171

Fenced code blocks should have a language specified
cd build
ninja
```

## Original project

The original project was created by Wizard of Oz. More information about the original project can be found at the following location:
Expand Down