-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmeson.build
More file actions
231 lines (205 loc) · 5.47 KB
/
meson.build
File metadata and controls
231 lines (205 loc) · 5.47 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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
project(
'wlframe',
'c',
version: '0.0.1-dev',
license: 'MIT',
meson_version: '>=1.3',
default_options: [
'c_std=' + (meson.version().version_compare('>=1.4.0') ? 'c23,c11' : 'c11'),
'warning_level=2',
'werror=true',
],
)
version = meson.project_version().split('-')[0]
version_major = version.split('.')[0]
version_minor = version.split('.')[1]
versioned_name = '@0@-@1@.@2@'.format(meson.project_name(), version_major, version_minor)
little_endian = target_machine.endian() == 'little'
big_endian = target_machine.endian() == 'big'
add_project_arguments([
'-D_POSIX_C_SOURCE=200809L',
'-DWLF_LITTLE_ENDIAN=@0@'.format(little_endian.to_int()),
'-DWLF_BIG_ENDIAN=@0@'.format(big_endian.to_int()),
], language: 'c')
cc = meson.get_compiler('c')
common_c_args = cc.get_supported_arguments([
'-Wundef',
'-Wmissing-include-dirs',
'-Wold-style-definition',
'-Wpointer-arith',
'-Winit-self',
'-Wstrict-prototypes',
'-Wendif-labels',
'-Wstrict-aliasing=2',
'-Woverflow',
'-Wmissing-prototypes',
'-Walloca',
'-Wno-missing-braces',
'-Wno-missing-field-initializers',
'-Wno-unused-parameter',
])
linux_c_args = cc.get_supported_arguments([
'-Wlogical-op',
'-Wimplicit-fallthrough=2',
'-fstack-protector-strong',
'-Wformat-security',
])
macos_c_args = cc.get_supported_arguments([
'-Wno-unused-command-line-argument',
])
is_linux = host_machine.system() == 'linux'
is_macos = host_machine.system() == 'darwin'
if is_linux
add_project_arguments(common_c_args + linux_c_args, language: 'c')
elif is_macos
add_project_arguments(common_c_args + macos_c_args, language: 'c')
else
error('Unsupported platform: ' + host_machine.system())
endif
fs = import('fs')
relative_dir = fs.relative_to(meson.current_source_dir(), meson.global_build_root()) + '/'
if cc.has_argument('-fmacro-prefix-map=/prefix/to/hide=')
add_project_arguments(
'-fmacro-prefix-map=@0@='.format(relative_dir),
language: 'c',
)
else
add_project_arguments(
'-D_WLF_REL_SRC_DIR="@0@"'.format(relative_dir),
language: 'c',
)
endif
features = {
'wayland-backend': false,
'x11-backend': false,
'vulkan-render': false,
'pixman-render': true,
'macos_platform': is_macos,
'linux_platform': is_linux,
}
math = cc.find_library('m')
if is_linux
message('Building for Linux')
rt = cc.find_library('rt')
wayland_project_options = ['tests=false', 'documentation=false']
wayland_client = dependency('wayland-client',
version: '>=1.23',
fallback: 'wayland',
default_options: wayland_project_options,
)
wayland_protos = dependency('wayland-protocols',
version: '>=1.44',
fallback: 'wayland-protocols',
default_options: ['tests=false'],
)
libpng = dependency('libpng', required: true)
libturbojpeg = dependency('libjpeg', required: true)
pixman = dependency('pixman-1', version: '>=0.42', required: true)
vulkan = dependency('vulkan', version: '>=1.2.182', required: true)
gbm = dependency('gbm', required: true)
drm = dependency('libdrm',
version: '>=2.4.122',
fallback: 'libdrm',
default_options: [
'auto_features=disabled',
'tests=false',
],
)
libwebp = dependency('libwebp', required: true)
libwebpdemux = dependency('libwebpdemux', required: true)
libwebpmux = dependency('libwebpmux', required: true)
wlr_protos = dependency('wlr-protocols')
elif is_macos
message('Building for macOS')
libpng = dependency('libpng', required: true, method: 'pkg-config')
libturbojpeg = dependency('libturbojpeg', required: true, method: 'pkg-config')
libwebp = dependency('libwebp', required: true, method: 'pkg-config')
libwebpdemux = dependency('libwebpdemux', required: true, method: 'pkg-config')
libwebpmux = dependency('libwebpmux', required: true, method: 'pkg-config')
else
error('Unsupported platform')
endif
wlf_files = []
wlf_deps = [
math,
libpng,
libturbojpeg,
libwebp,
libwebpdemux,
libwebpmux,
]
if is_macos
elif is_linux
wlf_deps += [
rt,
wayland_client,
wayland_protos,
vulkan,
gbm,
drm,
pixman,
]
else
endif
subdir('include')
subdir('utils')
if is_linux
subdir('wayland')
subdir('dmabuf')
endif
subdir('image')
subdir('math')
subdir('platform')
subdir('renderer')
subdir('types')
subdir('buffer')
subdir('curve')
subdir('texture')
subdir('window')
subdir('pass')
subdir('allocator')
wlf_inc = include_directories('include')
symbols_file = 'wlframe.syms'
symbols_flag = '-Wl,--version-script,@0@/@1@'.format(meson.current_source_dir(), symbols_file)
if is_linux
symbols_flag = '-Wl,--version-script,@0@/@1@'.format(meson.current_source_dir(), symbols_file)
lib_wlf = library(
versioned_name, wlf_files,
dependencies: wlf_deps,
include_directories: [wlf_inc],
install: true,
link_args: symbols_flag,
link_depends: symbols_file,
)
elif is_macos
lib_wlf = library(
versioned_name, wlf_files,
dependencies: wlf_deps,
include_directories: [wlf_inc],
install: true,
)
endif
wlf_vars = {}
foreach name, have : features
wlf_vars += { 'have_' + name.underscorify(): have.to_string() }
endforeach
wlframe = declare_dependency(
link_with: lib_wlf,
dependencies: wlf_deps,
include_directories: wlf_inc,
variables: wlf_vars,
)
meson.override_dependency(versioned_name, wlframe)
subdir('examples')
if get_option('documentation').enabled()
subdir('docs')
endif
pkgconfig = import('pkgconfig')
pkgconfig.generate(
lib_wlf,
name: versioned_name,
description: 'UI framework library for building Wayland applications',
subdirs: versioned_name,
url: 'https://github.com/zzxyb/wlframe',
variables: wlf_vars,
)