Sync headers with drm-next
[drm/libdrm.git] / tegra / meson.build
blob5325ed747a2fbce038d34268651cde8c61a5655d
1 # Copyright © 2017-2018 Intel Corporation
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:
10 # The above copyright notice and this permission notice shall be included in
11 # all copies or substantial portions of the Software.
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.
21 libdrm_tegra = library(
22   'drm_tegra',
23   [
24     files(
25       'channel.c', 'job.c', 'private.h', 'pushbuf.c', 'syncpt.c', 'tegra.c'
26     ),
27     config_file
28   ],
29   include_directories : [inc_root, inc_drm],
30   link_with : libdrm,
31   dependencies : [dep_threads, dep_atomic_ops],
32   c_args : libdrm_c_args,
33   gnu_symbol_visibility : 'hidden',
34   version : '0.0.0',
35   install : true,
38 ext_libdrm_tegra = declare_dependency(
39   link_with : [libdrm, libdrm_tegra],
40   include_directories : [inc_drm, include_directories('.')],
43 if meson.version().version_compare('>= 0.54.0')
44   meson.override_dependency('libdrm_tegra', ext_libdrm_tegra)
45 endif
47 install_headers('tegra.h', subdir : 'libdrm')
49 pkg.generate(
50   libdrm_tegra,
51   name : 'libdrm_tegra',
52   subdirs : ['.', 'libdrm'],
53   description : 'Userspace interface to Tegra kernel DRM services',
56 test(
57   'tegra-symbols-check',
58   symbols_check,
59   args : [
60     '--lib', libdrm_tegra,
61     '--symbols-file', files('tegra-symbols.txt'),
62     '--nm', prog_nm.path(),
63   ],