aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: fa1222ef92f846a6ae9f40370924350388580b38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
ConsumerSocket/ProducerTransport API: data transport library for ICN
====================================================
This library is designed to provide a transport layer for applications willing to communicate
using an ICN protocol stack. It also provides some useful tools showing how to use the library.

Dependencies
------------

- libboost-all-dev
- libparc
- libccnx-common
- long-bow

Build the library
-----------------

For building the library, from the root folder of the project:

```bash
 $ mkdir build && cd build
 $ cmake ..
 $ make
```

If you do not want to build the tools:

```bash
 $ mkdir build && cd build
 $ cmake -D BUILD_TESTS=OFF ..
 $ make
```

Install the library
-------------------

For installing the library:

```bash
 $ cd build
 $ sudo make install
```