mirror of
https://github.com/WayfireWM/wf-osk.git
synced 2025-04-04 20:36:44 +02:00
31 lines
643 B
Meson
31 lines
643 B
Meson
project(
|
|
'wf-simple-osk',
|
|
'c',
|
|
'cpp',
|
|
version: '0.1',
|
|
license: 'MIT',
|
|
meson_version: '>=0.43.0',
|
|
default_options: [
|
|
'cpp_std=c++17',
|
|
'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')
|
|
|
|
install_data(
|
|
'wf-osk.desktop',
|
|
install_dir: '@0@/share/applications'.format(get_option('prefix'))
|
|
)
|