From a7c937ae5e32e7c1d4e251b4a2d659664fc64cd8 Mon Sep 17 00:00:00 2001 From: metal4people Date: Tue, 15 Nov 2016 10:17:42 +0200 Subject: [PATCH] - Added missing build steps to INSTALL I've faced with cmake error while generating make files for dlt-daemon. After searching a bit, I've found out that zlib and dbus packages needed to be installed for default dlt-daemon configuration. I used Ubuntu 16.04 for build and after I installed the packages cmake generated project successfully. I think that is good idea to mention required packages in INSTALL notes in order to save the time of someone who will try to build dlt-daemon as I did. --- INSTALL | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/INSTALL b/INSTALL index 8e740fda..de97b244 100644 --- a/INSTALL +++ b/INSTALL @@ -4,8 +4,15 @@ Alexander Wenzel Instructions for installing this software ----------------------------------------- -This software uses cmake as its build tool. To build and install the -DLT daemon, follow these steps: +The following packages need to be installed in order to be able to build and install DLT daemon: +- cmake +- zlib +- dbus + +On Ubuntu those dependencies can be installed with the following command: +- sudo apt-get install cmake zlib1g-dev libdbus-glib-1-dev + +To build and install the DLT daemon, follow these steps: - mkdir build - cd build