From 98cb314725ab3a81f07d8cd8b815dfe1f73311a7 Mon Sep 17 00:00:00 2001 From: William JCM Date: Fri, 29 Apr 2022 15:51:58 +0200 Subject: [PATCH] Update README.md. --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c3512bf..b74d471 100644 --- a/README.md +++ b/README.md @@ -4,17 +4,19 @@ A save file manager and editor for M.A.S.S. Builder. Based on [wxMASSManager](ht ## Installing -Get the `MassBuilderSaveTool-.zip` file from the [Releases](https://williamjcm.ovh/git/williamjcm/MassBuilderSaveTool/releases) page, and extract it somewhere. Then, launch `MassBuilderSaveTool.exe`. +Get the `MassBuilderSaveTool-.zip` file from the [project's home page](https://williamjcm.ovh/coding/mbst/) or the [Releases](https://williamjcm.ovh/git/williamjcm/MassBuilderSaveTool/releases) tab, and extract it somewhere. Then, launch `MassBuilderSaveTool-.exe`. ## Building on MSYS2 - IGNORE IF YOU JUST WANT TO USE THE APP! 1. Install the 64-bit (`x86_64`) version of [MSYS2](https://www.msys2.org/) in its default path (`C:\msys64`), and update it fully. 2. Run `pacman -S git mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake mingw-w64-x86_64-ninja`. -3. In a `MINGW64` shell, type `git clone https://github.com/williamjcm/MassBuilderSaveTool`. -4. Type `cd MassBuilderSaveTool && git submodule init && git submodule update && mkdir build && cd build`. +3. In a `MINGW64` shell, type `git clone --recursive https://github.com/williamjcm/MassBuilderSaveTool`. +4. Type `cd MassBuilderSaveTool && mkdir build && cd build`. 5. Type `cmake -GNinja -DCMAKE_BUILD_TYPE=Release ..` 6. Type `ninja` 7. ... 8. Profit! You'll be able to find the executable in `build/Release/bin`. + +**Note:** This should also work with the `ucrt64` or `clang64` repos. Just add `-ucrt` or `-clang` to `mingw-w64` when installing packages, and launch either a `UCRT64` or `CLANG64` shell in step 3.