Skip to content

Commit

Permalink
- Added missing build steps to INSTALL
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
metal4people authored and clipka committed Nov 17, 2016
1 parent f1770d3 commit a7c937a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions INSTALL
Expand Up @@ -4,8 +4,15 @@ Alexander Wenzel <Alexander.AW.Wenzel@bmw.de>

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
Expand Down

0 comments on commit a7c937a

Please sign in to comment.