alcros33 / MHW-Costume-Armor

GUI Program to customize layered Armor in the game Monster Hunter World.
MIT License
77 stars 18 forks source link
cpp gui mingw mod monster-hunter monster-hunter-world qt qt5

license

MHW Costume Armor

MHW Costume Armor is a Monster Hunter World MOD which includes graphic user interface to customize the layered armor equipped.

It is a C++ implementaion of the original MHW Transmog.

Available also at Nexus Mods

Release!

Checkout the compiled binaries on the latest Release !

GUI Preview

Dependencies To Build

Add the following folders to Path C:\Qt\Tools\mingw730_64\bin and C:\Qt\{VERSION}\mingw73_64\bin (Guide Info).

Extra Libraries that I include

Logging powered by EasyLogging++ Available here Sorry I'm to lazy to do the git submodule sutff.

Building Using MinGW

$ mkdir build
$ cd build
$ cmake .. -DCMAKE_BUILD_TYPE=[Debug | Release] -G "MinGW Makefiles"
$ mingw32-make

Building Using Visual Studio

Build either with CMake directly, or use File > Open > CMake in Visual Studio, then select Debug or Release, and press build.

Directly with CMake

mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=[Debug | Release] -G "Visual Studio 15 2017 Win64"
cmake --build . --config [Debug | Release]