1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
project('gtk-layer-shell',
['c'],
version: '0.9.2',
license: 'LGPLv3',
meson_version: '>=0.54.0',
default_options: ['c_std=gnu11', 'warning_level=3'])
lib_so_version = '0'
add_project_arguments(
['-Wno-pedantic', '-Werror=unused-function'],
language: 'c')
gtk = dependency('gtk+-3.0', version: '>=3.22.0')
wayland_client = dependency('wayland-client', version: '>=1.10.0')
# only required for the tests
wayland_server = dependency('wayland-server', version: '>=1.10.0', required: false)
# wayland_scanner is required, but we can find it without pkg-config
wayland_scanner = dependency('wayland-scanner', version: '>=1.10.0', required: false, native: true)
# required, see https://github.com/wmww/gtk4-layer-shell/issues/24
wayland_protocols = dependency('wayland-protocols', version: '>=1.16', required: true)
pkg_config = import('pkgconfig')
gnome = import('gnome')
subdir('include')
subdir('protocol')
subdir('gtk-priv')
subdir('src')
gtk_layer_shell = declare_dependency(
link_with: gtk_layer_shell_lib,
include_directories: gtk_layer_shell_inc)
subdir('examples')
if get_option('docs')
subdir('doc')
endif
if get_option('tests')
subdir('test')
else
# Add a single always-failing test to tell the user to reconfigure with tests enabled
py = find_program('python3')
tests_not_enabled_script = files(meson.current_source_dir() + '/test/tests-not-enabled.py')
test('Tests not enabled', py, args: [tests_not_enabled_script])
endif
|