Add cursor handling
This commit is contained in:
parent
3f09b57ed0
commit
6794c5f943
2 changed files with 17 additions and 6 deletions
|
|
@ -2,9 +2,9 @@ project('somebar', ['c', 'cpp'],
|
|||
default_options: ['cpp_std=c++17'])
|
||||
|
||||
wayland_dep = dependency('wayland-client')
|
||||
wayland_cursor_dep = dependency('wayland-cursor')
|
||||
qt5 = import('qt5')
|
||||
qt5_dep = dependency('qt5', modules: ['Core', 'Gui'])
|
||||
#moc = qt5.compile_moc(headers: [ 'src/.hpp', ])
|
||||
|
||||
subdir('protocols')
|
||||
|
||||
|
|
@ -13,5 +13,4 @@ executable('somebar',
|
|||
'src/shm_buffer.cpp',
|
||||
'src/bar.cpp',
|
||||
wayland_sources,
|
||||
#moc,
|
||||
dependencies: [qt5_dep, wayland_dep])
|
||||
dependencies: [qt5_dep, wayland_dep, wayland_cursor_dep])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue