-
Notifications
You must be signed in to change notification settings - Fork 63
/
meson.build
141 lines (114 loc) · 4.49 KB
/
meson.build
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# Meson build file
# https://github.com/linuxmint/cinnamon-desktop
project('cinnamon-desktop', 'c', version : '6.2.0', meson_version : '>=0.56.0')
# Before making a release, the LT_VERSION string should be modified.
# The string is of the form C.R.A.
# - If interfaces have been changed or added, but binary compatibility has
# been preserved, change to C+1.0.A+1
# - If binary compatibility has been broken (eg removed or changed interfaces)
# change to C+1.0.0
# - If the interface is the same as the previous version, change to C.R+1.A
LT_VERSION='4.0.0'
################################################################################
conf = configuration_data()
pkgconfig = import('pkgconfig')
i18n = import('i18n')
gnome = import('gnome')
cc = meson.get_compiler('c')
if not get_option('deprecation_warnings')
add_global_arguments('-Wno-deprecated-declarations', language: 'c')
endif
################################################################################
math = cc.find_library('m')
gdk_pixb= dependency('gdk-pixbuf-2.0', version: '>=2.22.0')
gio = dependency('gio-2.0', version: '>=2.37.3')
glib = dependency('glib-2.0', version: '>=2.37.3')
gtk = dependency('gtk+-3.0', version: '>=3.3.16')
systemd = dependency('libsystemd', required: get_option('systemd'))
x11 = dependency('x11')
xext = dependency('xext', version: '>=1.1')
xkbconf = dependency('xkeyboard-config')
xkbfile = dependency('xkbfile')
xrandr = dependency('xrandr', version: '>=1.3')
cinnamon_deps = [
gdk_pixb,
gio,
glib,
gtk,
math,
systemd,
x11,
xext,
xkbconf,
xkbfile,
xrandr,
]
use_alsa = get_option('alsa')
xkb_base = xkbconf.get_variable(pkgconfig: 'xkb_base')
# Path to the pnp.ids file -- to know if we use one shipped with another
# package, or an internal file
pnp_ids_path = get_option('pnp_ids')
pnp_ids_install_internal = (pnp_ids_path == '')
if pnp_ids_install_internal
# Default value
pnp_ids_path = join_paths(get_option('datadir'), 'libcinnamon-desktop')
pnp_ids_abspath = join_paths(get_option('prefix'), pnp_ids_path)
else
pnp_ids_abspath = pnp_ids_path
endif
################################################################################
# Config
timerfd_check = cc.compiles('''
#include <sys/timerfd.h>
#include <unistd.h>
int main () {
timerfd_create (CLOCK_MONOTONIC, TFD_CLOEXEC);
return 0;
}
''')
gettext_package = meson.project_name()
conf.set_quoted('GETTEXT_PACKAGE', gettext_package)
conf.set_quoted('GNOMELOCALEDIR', join_paths(get_option('prefix'), get_option('localedir')))
conf.set_quoted('PACKAGE_VERSION', meson.project_version())
conf.set('HAVE_BIND_TEXTDOMAIN_CODESET', cc.has_function('bind_textdomain_codeset'))
conf.set('datadir', get_option('datadir'))
conf.set('ENABLE_NLS', cc.has_header('libintl.h'))
conf.set('HAVE_ALSA', use_alsa)
conf.set('HAVE_GETTEXT', true)
conf.set('HAVE_INTROSPECTION', true)
conf.set('HAVE_SYSTEMD', systemd.found())
conf.set('HAVE_TIMERFD', timerfd_check)
################################################################################
rootInclude = include_directories('.')
configure_file(
output: 'config.h',
configuration: conf
)
subdir('install-scripts')
subdir('po')
subdir('libcinnamon-desktop')
subdir('libcvc')
subdir('schemas')
pnp_message = '@0@: @1@'.format(
''+(pnp_ids_install_internal ? 'internal' : 'system'),
pnp_ids_abspath
)
message('\n'.join([
'',
' prefix: ' + get_option('prefix'),
' exec_prefix: ' + get_option('prefix'),
' libdir: ' + get_option('libdir'),
' bindir: ' + get_option('bindir'),
' sbindir: ' + get_option('sbindir'),
' sysconfdir: ' + get_option('sysconfdir'),
' localstatedir: ' + get_option('localstatedir'),
' datadir: ' + get_option('datadir'),
' source code location: ' + meson.project_source_root(),
' compiler: ' + cc.get_id(),
' debugging support: ' + get_option('buildtype'),
' Use *_DISABLE_DEPRECATED: @0@'.format(get_option('deprecation_warnings')),
' Use PNP files: ' + pnp_message,
' Use ALSA: ' + '@0@'.format(use_alsa),
' systemd: @0@'.format(systemd.found()),
'',
]))