-
Notifications
You must be signed in to change notification settings - Fork 398
Compiling on Mac OS X
edubart edited this page Feb 22, 2013
·
15 revisions
This is how we compile otclient on Mac OS X, we use XQuartz to compile and run otclient, which is a X11 implementation for Mac OS, we do not use the native Cocoa API. This means that users will need XQuartz installed too to run the client. You will need to know the basics on how using terminal in Mac OS to follow this tutorial.
You should install all those requirements first, I will not cover how to install them in this tutorial, you do that by yourself.
We use brew to install most of required libraries by using the following commands:
brew install git
brew install lua
brew install boost
brew install glew
brew install physfs
git clone git://github.com/edubart/otclient.git
cd otclient
mkdir build
cd build
cmake ..
make -j4