meson: pass correct args to gbm symbol test
[mesa.git] / src / gbm / meson.build
1 # Copyright © 2017 Intel Corporation
2
3 # Permission is hereby granted, free of charge, to any person obtaining a copy
4 # of this software and associated documentation files (the "Software"), to deal
5 # in the Software without restriction, including without limitation the rights
6 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 # copies of the Software, and to permit persons to whom the Software is
8 # furnished to do so, subject to the following conditions:
9
10 # The above copyright notice and this permission notice shall be included in
11 # all copies or substantial portions of the Software.
12
13 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19 # SOFTWARE.
20
21 inc_gbm = include_directories('.', 'backends/dri')
22
23 files_gbm = files(
24 'main/backend.c',
25 'main/backend.h',
26 'main/gbm.c',
27 'main/gbm.h',
28 'main/gbmint.h',
29 )
30 deps_gbm = []
31 args_gbm = []
32 links_gbm = []
33 deps_gbm = []
34
35 if with_dri2
36 files_gbm += files('backends/dri/gbm_dri.c', 'backends/dri/gbm_driint.h')
37 deps_gbm += dep_libdrm # TODO: pthread-stubs
38 args_gbm += '-DDEFAULT_DRIVER_DIR="@0@"'.format(dri_driver_dir)
39 endif
40 if with_platform_wayland
41 deps_gbm += dep_wayland_server
42 links_gbm += libwayland_drm
43 endif
44
45 # TODO: wayland support (requires egl)
46
47 libgbm = shared_library(
48 'gbm',
49 files_gbm,
50 include_directories : [
51 include_directories('main'), inc_include, inc_src, inc_loader,
52 include_directories('../egl/wayland/wayland-drm')],
53 c_args : [c_vis_args, args_gbm],
54 link_args : [ld_args_gc_sections],
55 link_with : [links_gbm, libloader, libmesa_util, libxmlconfig],
56 dependencies : [deps_gbm, dep_dl],
57 version : '1.0',
58 install : true,
59 )
60
61 install_headers('main/gbm.h')
62
63 pkg.generate(
64 name : 'gbm',
65 filebase : 'gbm',
66 description : 'Mesa gbm library',
67 version : meson.project_version(),
68 libraries : libgbm,
69 libraries_private : '-ldl', # FIXME: autotools lists this a incomplete
70 )
71
72 if with_tests
73 test('gbm-symbols-check',
74 find_program('gbm-symbols-check'),
75 args : libgbm
76 )
77 endif