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
21 changes: 19 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,27 @@ This is the standalone version of the VGM2PRE VGM preset dumper. This app is a t

# Compilation

Pre-built binaries for Windows will be available soon. Compiling this app requires nall, included, and will later require phoenix, included, for the GUI. Please be aware that the compilation process has only been confirmed to work on a MinGW-based environment.
Compiling this app requires nall, included, and will later require phoenix, included, for the GUI.

## Windows (MinGW)

1. Download this code into some directory.
2. Navigate to this code's directory and run `make`

## macOS

Tested on macOS 13 (Ventura) with Apple Silicon (arm64). Also works on Intel Macs.

1. Download this code into some directory.
2. Navigate to this code's directory and run <tt>make</tt>
2. Navigate to the `vgm2pre` subdirectory.
3. Create the `obj` directory (required, not auto-created): `mkdir -p obj`
4. Run `make platform=macosx`

```bash
cd vgm2pre
mkdir -p obj
make platform=macosx
```

# Installation

Expand Down