summaryrefslogtreecommitdiff
path: root/capplets/windows
diff options
context:
space:
mode:
authorzhuyaliang <[email protected]>2023-10-19 11:41:29 +0800
committerLuke from DC <[email protected]>2023-12-27 04:24:30 +0000
commitbca3b80da6b3653ada9e0546a3fd053cdc4651d0 (patch)
tree91882520deb84786b2b2a7bf20470039d19265c8 /capplets/windows
parentc2e94e1925f3c7acfa3fd3352dc8fdafe6375adc (diff)
downloadmate-control-center-bca3b80da6b3653ada9e0546a3fd053cdc4651d0.tar.bz2
mate-control-center-bca3b80da6b3653ada9e0546a3fd053cdc4651d0.tar.xz
Add meson build support
Diffstat (limited to 'capplets/windows')
-rw-r--r--capplets/windows/meson.build36
1 files changed, 36 insertions, 0 deletions
diff --git a/capplets/windows/meson.build b/capplets/windows/meson.build
new file mode 100644
index 00000000..b60720eb
--- /dev/null
+++ b/capplets/windows/meson.build
@@ -0,0 +1,36 @@
+desktop = 'mate-window-properties.desktop'
+
+i18n.merge_file(
+ type: 'desktop',
+ input: desktop + '.in',
+ output: desktop,
+ po_dir: po_dir,
+ install: true,
+ install_dir: mcc_desktopdir
+)
+
+sources = files(
+ 'mate-metacity-support.c',
+ 'mate-window-properties.c'
+)
+
+sources += gnome.compile_resources(
+ 'mate-window-properties-resources',
+ 'org.mate.mcc.windows.gresource.xml',
+ c_name: 'window_properties',
+ export: true
+)
+
+cflags += [
+ '-DMATECC_DATA_DIR="@0@"'.format(mcc_pkgdatadir),
+]
+
+executable(
+ 'mate-window-properties',
+ sources : sources,
+ include_directories: config_inc,
+ dependencies : [common_deps, libcommon_dep],
+ c_args : cflags,
+ install : true,
+ install_dir : get_option('bindir')
+)