Skip to content

Commit

Permalink
build: check dependency libevdev
Browse files Browse the repository at this point in the history
  • Loading branch information
wineee committed Oct 8, 2023
1 parent af29a02 commit f3bbf1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ wayfire = dependency('wayfire')
giomm = dependency('giomm-2.4', required: false)
wayland_protos = dependency('wayland-protocols', version: '>=1.12')
wayland_server = dependency('wayland-server')
evdev = dependency('libevdev')

if get_option('enable_windecor') == true
windecor = subproject('windecor')
Expand Down
2 changes: 1 addition & 1 deletion src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ crosshair = shared_module('crosshair', 'crosshair.cpp',
install: true, install_dir: join_paths(get_option('libdir'), 'wayfire'))

focus_steal_prevent = shared_module('focus-steal-prevent', 'focus-steal-prevent.cpp',
dependencies: [wayfire],
dependencies: [wayfire, evdev],
install: true, install_dir: join_paths(get_option('libdir'), 'wayfire'))

follow_focus = shared_module('follow-focus', 'follow-focus.cpp',
Expand Down

0 comments on commit f3bbf1f

Please sign in to comment.