We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This guide describes how to install OTServ using MinGW on Windows. Begin by opening up the command tool.
You need to make sure that gcc version in MinGW is at least 4.6
You need to download Dev-C++ packages and install them within MinGW directory for following libraries:
Download a .zip of the server master branch here: https://github.com/opentibia/server/zipball/master and extract it to C:/ drive.
In the terminal navigate to otserver directory and create build directory:
cd C:\opentibia-server-<long code, hit tab to autocomplete it> mkdir build cd build
Start the compilation, but first notice attributes of CMake and change it accordingly to your location of MinGW:
cmake -DCMAKE_INCLUDE_PATH=C:/MinGW/include/ -DCMAKE_LIBRARY_PATH=C:/MinGW/lib/ -DUSE_MYSQL=On -G"Unix Makefiles" -DCMAKE_BUILD_TYPE=Performance .. make -j2