From a9d1ad8be4dc792ad976aac14a3d12044d5d6c84 Mon Sep 17 00:00:00 2001 From: Wu Xiaotian Date: Fri, 3 May 2019 17:19:03 +0800 Subject: use meson to build --- meson.build | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 meson.build (limited to 'meson.build') diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..943984b --- /dev/null +++ b/meson.build @@ -0,0 +1,19 @@ +project('mate-backgrounds', + version : '1.22.0', + meson_version: '>= 0.41.0' + ) + +i18n = import('i18n') + +prefix = get_option('prefix') +datadir = join_paths(prefix, get_option('datadir')) +backgrounddir = join_paths(datadir, 'backgrounds', 'mate') +metadatadir = join_paths(datadir, 'mate-background-properties') + +conf = configuration_data() +conf.set('datadir', datadir) + +subdir('abstract') +subdir('desktop') +subdir('nature') +subdir('po') -- cgit v1.2.1