Morrowind Multiplayer's Code Has Been Released

Everything having to do with OpenMW's TES3MP branch.
Post Reply
TheSweetLizard
Posts: 2
Joined: 06 Jul 2016, 14:47

Morrowind Multiplayer's Code Has Been Released

Post by TheSweetLizard »

And available through this link https://github.com/TES3MP
There are no yet any FAQs about compiling, nor I know any man compiled the code successfully except developers. I had some severe problems with setting up cmake to find RakNet dependency and I gave up.
If any skilled person could compile this thing and release binaries it would be just awesome. Or at least make a little guide.
aesylwinn
Posts: 243
Joined: 14 Dec 2015, 20:30

Re: Morrowind Multiplayer's Code Has Been Released

Post by aesylwinn »

I posted some of the things I ran into here. It requires a bit of tinkering and things may work differently on different platforms/compilers. Unless you want to mess around with it now, I would suggest waiting until it has all been ironed out.

With CMake you can manually point the variables to the correct location and library. For me, the RakNet installed itself in the git repository for some reason (likely a bug) instead of using the install prefix I provided. I chose to point CMake to the variables instead of moving the files to a place they would be found.
So for example, I have the following variables:
RakNet_INCLUDES set to /home/aesylwinn/repositories/RakNet/include/raknet
RakNet_LIBRARY_DEBUG set to /home/aesylwinn/repositories/RakNet/Lib/RakNetLibStatic/libRakNetLibStatic.a
RakNet_LIBRARY_RELEASE set to /home/aesylwinn/repositories/RakNet/Lib/RakNetLibStatic/libRakNetLibStatic.a
Post Reply