1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| glamoregl_src = [
| '../../../glamor/glamor_egl.c',
| '../../../glamor/glamor_eglmodule.c',
| 'glamor_xf86_xv.c',
| ]
|
| shared_module(
| 'glamoregl',
| glamoregl_src,
|
| include_directories: [inc, xorg_inc],
| c_args: xorg_c_args,
| dependencies: [
| common_dep,
| dependency('libdrm', version: '>= 2.4.46'),
| gbm_dep,
| ],
| link_with: glamor,
|
| install: true,
| install_dir: module_dir,
| )
|
|