summaryrefslogtreecommitdiff
path: root/applets/notification_area/system-tray
diff options
context:
space:
mode:
authorAleksey Samoilov <[email protected]>2026-08-02 01:27:47 +0400
committerGitHub <[email protected]>2026-08-01 21:27:47 +0000
commit1b527834cdca36b3971b63720b8ffb38b4fd57ba (patch)
treeec2f1a4e2f21e620d354c52bd26819d5d6c76346 /applets/notification_area/system-tray
parent09df5771a28035d781c22677bf2273d551f02a50 (diff)
downloadmate-panel-master.tar.bz2
mate-panel-master.tar.xz
Add Meson support (#1571)HEADmaster
* Add Meson support * Fix libegg submodule configure * generate schemas before install
Diffstat (limited to 'applets/notification_area/system-tray')
-rw-r--r--applets/notification_area/system-tray/meson.build23
1 files changed, 23 insertions, 0 deletions
diff --git a/applets/notification_area/system-tray/meson.build b/applets/notification_area/system-tray/meson.build
new file mode 100644
index 00000000..a3add66a
--- /dev/null
+++ b/applets/notification_area/system-tray/meson.build
@@ -0,0 +1,23 @@
+na_marshal = gnome.genmarshal('na-marshal',
+ sources: 'na-marshal.list',
+ prefix: '_na_marshal',
+ internal: true,
+)
+
+libsystem_tray = static_library('system-tray',
+ 'fixedtip.c',
+ 'fixedtip.h',
+ na_marshal,
+ 'na-tray.c',
+ 'na-tray.h',
+ 'na-tray-child.c',
+ 'na-tray-child.h',
+ 'na-tray-manager.c',
+ 'na-tray-manager.h',
+ include_directories: [include_directories('.'), include_directories('..')],
+ dependencies: notification_area_deps + [x11_dep],
+ c_args: [
+ '-DMATELOCALEDIR="@0@"'.format(mate_panel_localedir),
+ '-DG_LOG_DOMAIN="notification-area-applet"',
+ ] + disable_deprecated_flags,
+)