Skip to content

Commit 5827daf

Browse files
committed
Minor Removals and Additions
- Removed doc folder with old screenshot - Removed unused dependency from CMakeLists (spdlog) - Added support chat (gitter) to README
1 parent b722ffb commit 5827daf

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CMakeLists.txt

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,21 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS on)
55
set(CMAKE_CXX_STANDARD 17)
66
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/Modules/")
77

8-
add_executable(gebaard src/main.cpp src/io/input.cpp src/io/input.h src/config/config.cpp src/config/config.h src/daemonizer.cpp src/daemonizer.h)
8+
add_executable(gebaard
9+
src/main.cpp
10+
src/io/input.cpp
11+
src/io/input.h
12+
src/config/config.cpp
13+
src/config/config.h
14+
src/daemonizer.cpp
15+
src/daemonizer.h)
916

1017
find_package(PkgConfig)
1118
if (PKG_CONFIG_FOUND)
1219
pkg_search_module(LIBINPUT REQUIRED libinput)
1320
endif ()
1421

1522
find_package(udev)
16-
find_package(spdlog)
1723

1824
target_link_libraries(gebaard ${LIBINPUT_LIBRARIES} ${UDEV_LIBRARIES} stdc++fs)
1925
target_include_directories(gebaard PUBLIC ${LIBINPUT_INCLUDE_DIRS} ${UDEV_INCLUDE_DIRS} libs/cxxopts/include libs/cpptoml/include)

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Gebaar
22
=========
3+
[![Gitter chat](https://badges.gitter.im/gebaar-libinput/community.png)](https://gitter.im/gebaar-libinput/community)
34

45
WM Independent Touchpad Gesture Daemon for libinput
56

doc/swipes.png

-117 KB
Binary file not shown.

0 commit comments

Comments
 (0)