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
|
project('wbg', 'c',
version: '1.2.0',
license: 'MIT',
meson_version: '>=0.58.0',
default_options: [
'c_std=c18',
'warning_level=1',
'werror=true',
'b_ndebug=if-release'])
is_debug_build = get_option('buildtype').startswith('debug')
add_project_arguments(
['-D_POSIX_C_SOURCE=200809L', '-D_GNU_SOURCE'] +
(is_debug_build ? ['-D_DEBUG'] : []),
language: 'c',
)
cc = meson.get_compiler('c')
# Compute the relative path used by compiler invocations.
source_root = meson.current_source_dir().split('/')
build_root = meson.global_build_root().split('/')
relative_dir_parts = []
i = 0
in_prefix = true
foreach p : build_root
if i >= source_root.length() or not in_prefix or p != source_root[i]
in_prefix = false
relative_dir_parts += '..'
endif
i += 1
endforeach
i = 0
in_prefix = true
foreach p : source_root
if i >= build_root.length() or not in_prefix or build_root[i] != p
in_prefix = false
relative_dir_parts += p
endif
i += 1
endforeach
relative_dir = join_paths(relative_dir_parts) + '/'
if cc.has_argument('-fmacro-prefix-map=/foo=')
add_project_arguments('-fmacro-prefix-map=@0@='.format(relative_dir), language: 'c')
endif
math = cc.find_library('m')
pixman = dependency('pixman-1')
png = dependency('libpng', required: get_option('png'))
jpg = dependency('libjpeg', required: get_option('jpeg'))
webp = dependency('libwebp', required: get_option('webp'))
svg = declare_dependency(
sources: ['nanosvg.c', '3rd-party/nanosvg/src/nanosvg.h',
'nanosvgrast.c', '3rd-party/nanosvg/src/nanosvgrast.h'],
include_directories: '3rd-party/nanosvg/src',
dependencies: math,
)
have_svg = get_option('svg')
if not png.found() and not jpg.found() and not webp.found() and not have_svg
error('you must enable at least one image format')
endif
if png.found()
add_project_arguments('-DWBG_HAVE_PNG=1', language: 'c')
endif
if jpg.found()
add_project_arguments('-DWBG_HAVE_JPG=1', language:'c')
endif
if webp.found()
add_project_arguments('-DWBG_HAVE_WEBP=1', language:'c')
endif
if have_svg
add_project_arguments('-DWBG_HAVE_SVG=1', language:'c')
endif
wayland_protocols = dependency('wayland-protocols')
wayland_client = dependency('wayland-client')
tllist = dependency('tllist', version: '>=1.0.1', fallback: 'tllist')
wayland_protocols_datadir = wayland_protocols.get_variable('pkgdatadir')
wscanner = dependency('wayland-scanner', native: true)
wscanner_prog = find_program(
wscanner.get_variable('wayland_scanner'), native: true)
wl_proto_headers = []
wl_proto_src = []
foreach prot : [
'external/wlr-layer-shell-unstable-v1.xml',
wayland_protocols_datadir + '/stable/xdg-shell/xdg-shell.xml']
wl_proto_headers += custom_target(
prot.underscorify() + '-client-header',
output: '@BASENAME@.h',
input: prot,
command: [wscanner_prog, 'client-header', '@INPUT@', '@OUTPUT@'])
wl_proto_src += custom_target(
prot.underscorify() + '-private-code',
output: '@BASENAME@.c',
input: prot,
command: [wscanner_prog, 'private-code', '@INPUT@', '@OUTPUT@'])
endforeach
env = find_program('env', native: true)
generate_version_sh = files('generate-version.sh')
version = custom_target(
'generate_version',
build_always_stale: true,
output: 'version.h',
command: [env, 'LC_ALL=C', generate_version_sh, meson.project_version(), '@CURRENT_SOURCE_DIR@', '@OUTPUT@'])
image_format_sources = []
if png.found()
image_format_sources += ['png.c', 'png-wbg.h']
endif
if jpg.found()
image_format_sources += ['jpg.c', 'jpg.h']
endif
if webp.found()
image_format_sources += ['webp.c', 'webp.h']
endif
if have_svg
image_format_sources += ['svg.c', 'svg.h']
endif
executable(
'wbg',
'main.c',
'log.c', 'log.h',
'shm.c', 'shm.h',
'stride.h',
image_format_sources,
wl_proto_src + wl_proto_headers, version,
dependencies: [pixman, png, jpg, webp, svg, wayland_client, tllist],
install: true)
summary(
{
'PNG support': png.found(),
'JPEG support': jpg.found(),
'WebP support': webp.found(),
'SVG support': have_svg
},
bool_yn: true
)
|