mutter/src/meta/meson.build
Florian Müllner f481cbfa16 plugin: Drop version information
Mutter itself is versioned now, so passing the version information
to the plugin is redunant now: The version is already determined by
linking to a particular API version (gnome-shell) or by installing
to a versioned plugin path (external plugins).

https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1473
2020-10-06 15:14:34 +02:00

74 lines
1.5 KiB
Meson

mutter_public_headers = [
'barrier.h',
'boxes.h',
'common.h',
'compositor.h',
'compositor-mutter.h',
'display.h',
'group.h',
'keybindings.h',
'main.h',
'meta-backend.h',
'meta-background.h',
'meta-background-actor.h',
'meta-background-content.h',
'meta-background-group.h',
'meta-background-image.h',
'meta-close-dialog.h',
'meta-cursor-tracker.h',
'meta-dnd.h',
'meta-idle-monitor.h',
'meta-inhibit-shortcuts-dialog.h',
'meta-launch-context.h',
'meta-later.h',
'meta-monitor-manager.h',
'meta-plugin.h',
'meta-remote-access-controller.h',
'meta-selection.h',
'meta-selection-source.h',
'meta-selection-source-memory.h',
'meta-settings.h',
'meta-shadow-factory.h',
'meta-shaped-texture.h',
'meta-sound-player.h',
'meta-stage.h',
'meta-startup-notification.h',
'meta-window-actor.h',
'meta-window-group.h',
'meta-window-shape.h',
'meta-workspace-manager.h',
'prefs.h',
'theme.h',
'types.h',
'util.h',
'window.h',
'workspace.h',
]
if have_wayland
mutter_public_headers += [
'meta-wayland-client.h',
]
endif
if have_x11
mutter_public_headers += [
'meta-x11-display.h',
'meta-x11-errors.h',
]
endif
install_headers(mutter_public_headers,
subdir: mutter_includesubdir
)
mutter_public_header_files = files(mutter_public_headers)
mutter_enum_types = gnome.mkenums('meta-enum-types',
sources: [mutter_public_headers],
c_template: 'meta-enum-types.c.in',
h_template: 'meta-enum-types.h.in',
install_dir: mutter_includedir,
install_header: true,
)