-
Notifications
You must be signed in to change notification settings - Fork 9
/
meson.build
134 lines (112 loc) · 2.69 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
project(
'pywm',
'c',
version: '0.1.0',
license: 'MIT',
meson_version: '>=0.48.0',
default_options : [
'c_std=c11',
'warning_level=2'
],
)
add_project_arguments(
'-Wno-unused-parameter',
language: 'c',
)
add_project_arguments(
'-DWLR_USE_UNSTABLE',
language: 'c',
)
if get_option('custom_renderer').enabled()
add_project_arguments(
'-DWM_CUSTOM_RENDERER',
language: 'c',
)
endif
# Dependencies
wayland_server = dependency('wayland-server')
wayland_client = dependency('wayland-client')
wayland_cursor = dependency('wayland-cursor')
wayland_egl = dependency('wayland-egl')
wayland_protos = dependency('wayland-protocols', version: '>=1.14')
xkbcommon = dependency('xkbcommon')
libinput = dependency('libinput')
pixman = dependency('pixman-1')
xwayland = dependency('xwayland', required: false)
pthread = meson.get_compiler('c').find_library('pthread')
math = meson.get_compiler('c').find_library('m')
has_xwayland = xwayland.found() and get_option('xwayland').enabled()
wlroots = subproject('wlroots', default_options: ['default_library=static']).get_variable('wlroots')
if has_xwayland
add_project_arguments(
'-DWM_HAS_XWAYLAND',
language: 'c',
)
endif
subdir('protocols')
if get_option('custom_renderer').enabled()
subdir('src/wm/shaders')
endif
deps = [
wlroots,
wayland_server,
server_protos,
xkbcommon,
libinput,
pixman,
xwayland,
pthread,
math
]
sources = [
'src/wm/wm.c',
'src/wm/wm_server.c',
'src/wm/wm_renderer.c',
'src/wm/wm_seat.c',
'src/wm/wm_keyboard.c',
'src/wm/wm_pointer.c',
'src/wm/wm_cursor.c',
'src/wm/wm_layout.c',
'src/wm/wm_output.c',
'src/wm/wm_content.c',
'src/wm/wm_view.c',
'src/wm/wm_view_xdg.c',
'src/wm/wm_view_layer.c',
'src/wm/wm_widget.c',
'src/wm/wm_config.c',
'src/wm/wm_idle_inhibit.c',
'src/wm/wm_drag.c',
'src/wm/wm_composite.c',
]
if get_option('custom_renderer').enabled()
sources += [
texture_shaders_c,
primitive_shaders_c,
quad_shaders_c
]
endif
if has_xwayland
sources += [
'src/wm/wm_view_xwayland.c',
]
endif
py_sources = [
'src/py/_pywmmodule.c',
'src/py/_pywm_callbacks.c',
'src/py/_pywm_view.c',
'src/py/_pywm_widget.c'
]
incs = include_directories('include')
executable(
'pywm',
sources + ['src/main.c'],
include_directories: incs,
dependencies: deps,
)
python = import('python').find_installation('python3')
python.extension_module(
'_pywm',
sources + py_sources,
include_directories: incs,
dependencies: deps + [python.dependency()],
)