summaryrefslogtreecommitdiff
path: root/src/meta/meson.build
blob: 94b385310d93892470c95bd7f6ef079320525d0e (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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-context.h',
  'meta-dnd.h',
  'meta-enums.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',
  '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,
)