mirror of
https://github.com/tbamud/tbamud.git
synced 2025-09-21 21:40:49 +02:00
tbaMUD is the continued development of the codebase formerly known as CircleMUD.
http://tbamud.com/
|
||
---|---|---|
.github/workflows | ||
bin | ||
cnf | ||
doc | ||
lib | ||
log | ||
src | ||
.clang-tidy | ||
.gitignore | ||
.gitmodules | ||
autorun | ||
autorun.amiga | ||
autorun.cmd | ||
autorun.pl | ||
autorun.sh | ||
changelog | ||
CMakeLists.txt | ||
configure | ||
LICENSE.md | ||
macrun.pl | ||
power_curve.ipynb | ||
README.md | ||
vms_autorun.com |
Files for tbaMUD.
To build
- run configure:
./configure
- build the code:
cd src && make
- run the mud:
cd ..; bin/circle 1234
- connect via telnet to port 1234.
Read more in the doc/ folder
To run the tests
- clone the munit library into src/munit. It is registered as a submodule in git
git submodule init && git submodule update
- install the cmocka-library:
sudo apt install libcmocka-dev
./config.status && cd src && make test