Created
August 1, 2019 14:38
-
-
Save Turupawn/bac8c1048dbc59ad048b8d9aec0281f5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## MinGW | |
### Setup | |
Download and install the [MinGW](http://www.mingw.org/) with MinGW32-Make support. Then add the MinGW `bin/` directory to your environment path. | |
We ship the Zlib and Curl binaries under the `lib/MinGW` directory but feel free to build them yourself by following [our guide](https://github.com/modio/SDK/tree/master/lib). | |
### Build | |
cd src | |
mkdir build | |
cd build | |
cmake -G"MinGW Makefiles" .. | |
mingw32-make | |
This will generate the import library `libmodio.a` and the dynamic library `libmodio.dll`. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment