replace qt with cairo/pango/epoll
This commit is contained in:
parent
31c09e24d6
commit
3db22e4a71
6 changed files with 206 additions and 125 deletions
12
meson.build
12
meson.build
|
|
@ -3,7 +3,9 @@ project('somebar', ['c', 'cpp'],
|
|||
|
||||
wayland_dep = dependency('wayland-client')
|
||||
wayland_cursor_dep = dependency('wayland-cursor')
|
||||
qt5_dep = dependency('qt5', modules: ['Core', 'Gui'])
|
||||
cairo_dep = dependency('cairo')
|
||||
pango_dep = dependency('pango')
|
||||
pangocairo_dep = dependency('pangocairo')
|
||||
|
||||
subdir('protocols')
|
||||
|
||||
|
|
@ -12,4 +14,10 @@ executable('somebar',
|
|||
'src/shm_buffer.cpp',
|
||||
'src/bar.cpp',
|
||||
wayland_sources,
|
||||
dependencies: [wayland_dep, wayland_cursor_dep, qt5_dep])
|
||||
dependencies: [
|
||||
wayland_dep,
|
||||
wayland_cursor_dep,
|
||||
cairo_dep,
|
||||
pango_dep,
|
||||
pangocairo_dep,
|
||||
])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue