tbamud/README.md

21 lines
471 B
Markdown
Raw Permalink Normal View History

2013-04-13 00:24:38 +02:00
Files for tbaMUD.
2024-06-21 00:22:15 +02:00
---
2013-04-13 00:24:38 +02:00
2024-06-21 00:22:15 +02:00
## To build
2024-06-21 00:35:32 +02:00
1. run configure: `./configure`
2. build the code: `cd src && make`
3. run the mud: `cd ..; bin/circle 1234`
4. connect via telnet to port 1234.
2024-06-21 00:22:15 +02:00
Read more in the doc/ folder
2024-06-21 00:35:32 +02:00
## To run the tests
1. clone the munit library into src/munit. It is registered as a submodule in git
`git submodule init && git submodule update`
2024-06-21 00:35:32 +02:00
2. install the cmocka-library: `sudo apt install libcmocka-dev`
3. `./config.status && cd src && make test`