blob: 84321283e0dbf25a436bfdf2c9d1bfd517e69c13 (
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
|
## Installation
## Prerequisites
Low level CAN service (>=4.0) must be installed. Prerequisites are the same.
```bash
$ git clone --recursive https://gerrit.automotivelinux.org/gerrit/apps/low-level-can-service
```
## Clone and build high level binding
### Build requirements
* CMake version 3.0 or later
* G++, Clang++ or any C++11 compliant compiler.
### Clone
```bash
$ export WD=$(pwd)
$ git clone --recusive https://github.com/iotbzh/high-level-viwi-service.git
```
### Build
```bash
$ cd $WD/high-level-viwi-service
$ mkdir build
$ cd build
$ cmake ..
$ make
```
|