Skip to content

Commit 19d594a

Browse files
author
Daniel K. O.
committed
Fixed build, removed unused files, added link to docs to README.
1 parent 4677c77 commit 19d594a

File tree

6 files changed

+12
-3
lines changed

6 files changed

+12
-3
lines changed

AUTHORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Daniel K. O.
1+
Daniel K. O. <dkosmari>

ChangeLog

Whitespace-only changes.

Makefile.am

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ libevdevxxdir = $(includedir)/libevdevxx
2121

2222
libevdevxx_HEADERS = \
2323
include/libevdevxx/AbsInfo.hpp \
24+
include/libevdevxx/basic_wrapper.hpp \
2425
include/libevdevxx/Code.hpp \
2526
include/libevdevxx/Device.hpp \
2627
include/libevdevxx/evdevxx.hpp \

NEWS

Whitespace-only changes.

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@
22

33
![build status](https://github.com/dkosmari/libevdevxx/actions/workflows/build.yml/badge.svg)
44

5-
65
`libevdevxx` is a C++20 wrapper for the C library `libevdev`, which is a high-level C
76
library for the `evdev` Linux driver. This library exposes all of `libevdev` as C++ classes
87
and methods, with RAII and type safety.
98

109

10+
## Documentation
11+
12+
HTML documentation can be found here: https://dkosmari.github.io/libevdevxx/
13+
14+
1115
## Example
1216

1317
This example ([examples/circle-mouse.cpp](examples/circle-mouse.cpp)) creates a virtual

configure.ac

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.70])
5-
AC_INIT([libevdevxx], [0.4.0+], [])
5+
AC_INIT([libevdevxx],
6+
[0.4.0+],
7+
[https://github.com/dkosmari/libevdevxx/issues],
8+
[],
9+
[https://github.com/dkosmari/libevdevxx])
610
AC_CONFIG_SRCDIR([src/AbsInfo.cpp])
711
AC_CONFIG_HEADERS([config.h])
812
AC_CONFIG_AUX_DIR([build-aux])

0 commit comments

Comments
 (0)