From a30185610beb815648854207cb2a29d0fa9303dc Mon Sep 17 00:00:00 2001 From: "Marty E. Plummer" Date: Tue, 21 May 2019 17:01:18 -0500 Subject: treewide: add meson build Signed-off-by: Marty E. Plummer --- tools/meson.build | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tools/meson.build (limited to 'tools') diff --git a/tools/meson.build b/tools/meson.build new file mode 100644 index 0000000..86fc703 --- /dev/null +++ b/tools/meson.build @@ -0,0 +1,18 @@ +executable('mate-color-select', + 'mate-color-select.c', + c_args: [ + '-DLOCALE_DIR="@0@"'.format(join_paths(get_option('prefix'), get_option('localedir'))), + ], + dependencies: [ gtk_dep, libmate_desktop_dep, ], + include_directories: top_inc, + install: true, +) + +i18n.merge_file( + input: 'mate-color-select.desktop.in', + output: 'mate-color-select.desktop', + type: 'desktop', + po_dir: '../po', + install: true, + install_dir: join_paths(get_option('datadir'), 'applications'), +) -- cgit v1.2.1