From ba8541cad3a4069886444abbd1848b6ef3fff72c Mon Sep 17 00:00:00 2001 From: Mauro Sardara Date: Wed, 22 Feb 2017 14:37:37 +0100 Subject: Initial Commit: libicnet Change-Id: I10a72cb0d84b76553a85c168416b847f6a4ff5f6 Signed-off-by: Mauro Sardara --- README.md | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 README.md (limited to 'README.md') diff --git a/README.md b/README.md new file mode 100644 index 00000000..fa1222ef --- /dev/null +++ b/README.md @@ -0,0 +1,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 +``` \ No newline at end of file -- cgit 1.2.3-korg