-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
33 lines (20 loc) · 776 Bytes
/
README
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
ebus is a C++ library to communicate via ebus.
To build ebus the following packages are needed:
- autoconf (2.69)
- automake (1.11)
- make
- g++ (C++14)
- ppoll support (kernel)
- pthread support (glibc)
- pkg-config
Build and install with:
$ ./autogen.sh
$ make
$ make install
autogen.sh with --prefix=/usr for installation into /usr/lib instead of /usr/local/lib.
To compile and link this library with your own project add pkg-config to gcc command line.
for exampel: geany
compiler: $ g++ -Wall -std=c++14 `pkg-config --cflags --libs ebus` -c "%f"
linker: $ g++ -Wall -std=c++14 `pkg-config --cflags --libs ebus` -o "%e" "%f"
For bugs and missing features use github issue system.
The author can be contacted at roland.jax@liwest.at.