@@ -9,27 +9,29 @@ start with, therefore getting familiar with the project.
9
9
10
10
## Features
11
11
12
- 1 . Single File and Small Codebase ;
13
- 2 . Fully Standalone (No 3rd library needed, only rely on toxcore and system c lib );
14
- 3 . Covered most apis of Friend&Group , and more to go ;
15
- 4 . Fun to play with(Colored text, Async REPL, etc.).
12
+ 1 . Single file and small codebase ;
13
+ 2 . Fully standalone (No 3rd library needed, only rely on toxcore and system C library );
14
+ 3 . Covered most APIs of friend & group , and more to come ;
15
+ 4 . Fun to play with (colored text, async REPL, etc.).
16
16
17
17
## Build
18
18
19
- If [ toxcore] ( https://github.com/TokTok/c-toxcore ) has been installed into system path, Use
19
+ If [ toxcore] ( https://github.com/TokTok/c-toxcore ) has been installed into the
20
+ system path, use
20
21
21
22
``` sh
22
23
make
23
24
```
24
25
25
- Or link it manually (assume libtoxcore.so in TOX\_ LIB\_ DIR, tox.h in TOX\_ H\_ DIR/tox):
26
+ Or link it manually (assuming ` libtoxcore.so ` exists in ` TOX_LIB_DIR ` , and
27
+ ` tox.h ` in ` TOX_H_DIR/tox ` ):
26
28
27
29
``` sh
28
30
$ gcc -o minitox minitox.c -I TOX_H_DIR -L TOX_LIB_DIR -Wl,-rpath TOX_LIB_DIR -ltoxcore
29
31
```
30
32
31
33
## Config
32
34
33
- To keep simple, ` minitox ` does not provid command line options,except for ` -h ` and ` --help ` .
34
- To change its behaviour, you are encouraged to modify the source file and rebuild. The source
35
- file has been heavily commented.
35
+ To keep things simple, ` minitox ` does not provide command line options, except
36
+ for ` -h ` and ` --help ` . To change its behaviour, you are encouraged to modify
37
+ the source file and rebuild. The source file has been heavily commented.
0 commit comments