meson: build gbm
[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 files_gbm = files(
22 'main/backend.c',
23 'main/backend.h',
24 'main/gbm.c',
25 'main/gbm.h',
26 'main/gbmint.h',
27 )
28 deps_gbm = []
29 args_gbm = []
30 links_gbm = []
31
32 if with_dri2
33 files_gbm += files('backends/dri/gbm_dri.c', 'backends/dri/gbm_driint.h')
34 deps_gbm += [dep_libdrm, dep_thread]
35 args_gbm += '-DDEFAULT_DRIVER_DIR="@0@"'.format(dri_driver_dir)
36 endif
37
38 # TODO: wayland support (requires egl)
39
40 libgbm = shared_library(
41 'gbm',
42 files_gbm,
43 include_directories : [
44 include_directories('main'), inc_include, inc_src, inc_loader],
45 c_args : args_gbm,
46 link_args : [ld_args_gc_sections],
47 link_with : [libloader, libmesa_util, libxmlconfig],
48 dependencies : [deps_gbm, dep_dl],
49 version : '1.0',
50 install : true,
51 )
52
53 install_headers('main/gbm.h')
54
55 pkg.generate(
56 name : 'gbm',
57 filebase : 'gbm',
58 description : 'Mesa gbm library',
59 version : meson.project_version(),
60 libraries : libgbm,
61 libraries_private : '-ldl', # FIXME: autotools lists this a incomplete
62 )
63
64 if with_tests
65 gbm_symbols_check = find_program('gbm-symbols-check')
66 test('gbm-symbols-check', gbm_symbols_check)
67 endif