forked from philj56/greetd-mini-wl-greeter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
141 lines (124 loc) · 3.1 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
project(
'greetd-mini-wl-greeter',
'c',
license: 'MIT',
default_options: [
'c_std=c2x',
'optimization=3',
'buildtype=debugoptimized',
'warning_level=3',
'b_lto=true',
'b_lto_threads=-1',
'b_pie=true',
'prefix=/usr'
],
)
debug = get_option('buildtype').startswith('debug')
if debug
add_project_arguments('-DDEBUG', language : 'c')
endif
data_location = join_paths(
get_option('prefix'),
get_option('datadir'),
'greetd-mini-wl-greeter'
)
shader_location = join_paths(
debug ? '' : data_location,
'shaders',
''
)
completion_location = join_paths(
get_option('prefix'),
get_option('datadir'),
'bash-completion',
'completions'
)
install_subdir(
'shaders',
install_dir: data_location
)
install_data(
'completions/greetd-mini-wl-greeter',
install_dir: completion_location
)
add_project_arguments(
[
'-pedantic',
#'-Wconversion',
'-Wshadow',
'-Wno-unused-parameter',
'-D_POSIX_C_SOURCE=200809L',
'-DSHADER_PATH="@0@"'.format(shader_location),
],
language: 'c'
)
sources = files(
'src/main.c',
'src/color.c',
'src/egl.c',
'src/entry.c',
'src/gl.c',
'src/greetd.c',
'src/image.c',
'src/ipc.c',
'src/log.c',
'src/surface.c',
)
cc = meson.get_compiler('c')
epoxy = dependency('epoxy')
glib = dependency('glib-2.0')
json = dependency('json-c')
pangocairo = dependency('pangocairo')
png = dependency('libpng')
wayland_client = dependency('wayland-client')
wayland_egl = dependency('wayland-egl')
wayland_protocols = dependency('wayland-protocols', native: true)
wayland_scanner_dep = dependency('wayland-scanner', native: true)
xkbcommon = dependency('xkbcommon')
# Generate the necessary Wayland headers / sources with wayland-scanner
wayland_scanner = find_program(
wayland_scanner_dep.get_pkgconfig_variable('wayland_scanner'),
native: true
)
wayland_protocols_dir = wayland_protocols.get_variable(pkgconfig: 'pkgdatadir')
wl_proto_headers = []
wl_proto_src = []
wl_proto_xml = [
wayland_protocols_dir + '/stable/xdg-shell/xdg-shell.xml',
]
foreach proto : wl_proto_xml
wl_proto_headers += custom_target(
proto.underscorify() + '_client_header',
output: '@[email protected]',
input: proto,
command: [wayland_scanner, 'client-header', '@INPUT@', '@OUTPUT@'])
wl_proto_src += custom_target(
proto.underscorify() + '_private_code',
output: '@[email protected]',
input: proto,
command: [wayland_scanner, 'private-code', '@INPUT@', '@OUTPUT@'])
endforeach
executable(
'greetd-mini-wl-greeter',
sources, wl_proto_src, wl_proto_headers,
dependencies: [epoxy, json, glib, pangocairo, png, wayland_egl, xkbcommon],
install: true
)
scdoc = find_program('scdoc', required: get_option('man-pages'))
if scdoc.found()
sed = find_program('sed')
sh = find_program('sh')
mandir = get_option('mandir')
manpage = 'doc/greetd-mini-wl-greeter.1.scd'
output = 'greetd-mini-wl-greeter.1'
custom_target(
output,
input: manpage,
output: output,
command: [
sh, '-c', '@0@ < @INPUT@ > @1@'.format(scdoc.path(), output)
],
install: true,
install_dir: '@0@/man1'.format(mandir)
)
endif