wf-osk/meson.build
Matteo Sozzi d28bd69671 Layer-shell support (#1)
* proto: added layer-shell support

* added clara header file

helper for parsing the cli options.

* cli: added command line options

* style: fixed style issues

* exiting main loop on close

* port to gtk-layer-shell

* fixup! port to gtk-layer-shell

* implement custom header-bar

* update wayfire-shell-v2
2019-09-10 23:31:08 +02:00

26 lines
535 B
Meson

project(
'wf-simple-osk',
'c',
'cpp',
version: '0.1',
license: 'MIT',
meson_version: '>=0.43.0',
default_options: [
'cpp_std=c++14',
'c_std=c11',
'warning_level=2',
'werror=false',
],
)
gtkmm = dependency('gtkmm-3.0')
wayland_client = dependency('wayland-client')
wayland_protos = dependency('wayland-protocols')
gtkls = dependency('gtk-layer-shell-0')
add_project_link_arguments(['-rdynamic'], language:'cpp')
add_project_arguments(['-Wno-unused-parameter'], language: 'cpp')
subdir('proto')
subdir('src')