Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 734 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 734 Bytes

Build Status

obsidian-server

ObsidianMUD server. Written in C++ using websockets. Web client is the obsidian-client.

Prerequisite installations

sudo apt-get install python-pip
sudo apt-get install cmake
PATH=$HOME/.local/bin:$PATH;
pip install conan
git submodule init
git submodule update

Build instructions

mkdir build && cd build/
conan install ..
cmake ..
make

Pylint instructions

After following the build instructions, run:
make cpplint

Running tests

After following the build instructions, run:
make test