-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathmeson.build
More file actions
43 lines (37 loc) · 1.11 KB
/
meson.build
File metadata and controls
43 lines (37 loc) · 1.11 KB
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
project(
'pantheon-desktop',
'vala', 'c',
version: '6.1.0'
)
gettext_name = meson.project_name() + '-plug'
gnome = import('gnome')
i18n = import('i18n')
prefix = get_option('prefix')
datadir = join_paths(prefix, get_option('datadir'))
libdir = join_paths(prefix, get_option('libdir'))
libexecdir = join_paths(prefix, get_option('libexecdir'))
add_project_arguments(
'-DGETTEXT_PACKAGE="@0@"'.format(gettext_name),
'-DGNOME_DESKTOP_USE_UNSTABLE_API',
language: 'c'
)
add_project_arguments(
['--vapidir', join_paths(meson.current_source_dir(), 'vapi')],
language: 'vala'
)
gio_dep = dependency('gio-2.0')
glib_dep = dependency('glib-2.0')
gobject_dep = dependency('gobject-2.0')
granite_dep = dependency('granite', version: '>=6.0.0')
gtk_dep = dependency('gtk+-3.0', version: '>= 3.22')
plank_dep = dependency('plank', version: '>=0.10.9')
posix_dep = meson.get_compiler('vala').find_library('posix')
plug_resources = gnome.compile_resources(
'plug_resources',
'data/icons.gresource.xml',
source_dir: 'data'
)
subdir('data')
subdir('src')
subdir('set-wallpaper-contract')
subdir('po')