meson.build revision 00a23bda
100a23bdaSmrg# Copyright © 2017-2018 Intel Corporation
200a23bdaSmrg
300a23bdaSmrg# Permission is hereby granted, free of charge, to any person obtaining a copy
400a23bdaSmrg# of this software and associated documentation files (the "Software"), to deal
500a23bdaSmrg# in the Software without restriction, including without limitation the rights
600a23bdaSmrg# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
700a23bdaSmrg# copies of the Software, and to permit persons to whom the Software is
800a23bdaSmrg# furnished to do so, subject to the following conditions:
900a23bdaSmrg
1000a23bdaSmrg# The above copyright notice and this permission notice shall be included in
1100a23bdaSmrg# all copies or substantial portions of the Software.
1200a23bdaSmrg
1300a23bdaSmrg# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1400a23bdaSmrg# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1500a23bdaSmrg# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1600a23bdaSmrg# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1700a23bdaSmrg# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1800a23bdaSmrg# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1900a23bdaSmrg# SOFTWARE.
2000a23bdaSmrg
2100a23bdaSmrg
2200a23bdaSmrglibdrm_radeon = shared_library(
2300a23bdaSmrg  'drm_radeon',
2400a23bdaSmrg  [
2500a23bdaSmrg    files(
2600a23bdaSmrg      'radeon_bo_gem.c', 'radeon_cs_gem.c', 'radeon_cs_space.c', 'radeon_bo.c',
2700a23bdaSmrg      'radeon_cs.c', 'radeon_surface.c',
2800a23bdaSmrg    ),
2900a23bdaSmrg    config_file,
3000a23bdaSmrg  ],
3100a23bdaSmrg  c_args : warn_c_args,
3200a23bdaSmrg  include_directories : [inc_root, inc_drm],
3300a23bdaSmrg  link_with : libdrm,
3400a23bdaSmrg  dependencies : [dep_pthread_stubs],
3500a23bdaSmrg  version : '1.0.1',
3600a23bdaSmrg  install : true,
3700a23bdaSmrg)
3800a23bdaSmrg
3900a23bdaSmrgext_libdrm_radeon = declare_dependency(
4000a23bdaSmrg  link_with : [libdrm, libdrm_radeon],
4100a23bdaSmrg  include_directories : [inc_drm, include_directories('.')],
4200a23bdaSmrg)
4300a23bdaSmrg
4400a23bdaSmrginstall_headers(
4500a23bdaSmrg	'radeon_bo.h', 'radeon_cs.h', 'radeon_surface.h', 'radeon_bo_gem.h',
4600a23bdaSmrg	'radeon_cs_gem.h', 'radeon_bo_int.h', 'radeon_cs_int.h', 'r600_pci_ids.h',
4700a23bdaSmrg  subdir : 'libdrm'
4800a23bdaSmrg)
4900a23bdaSmrg
5000a23bdaSmrgpkg.generate(
5100a23bdaSmrg  name : 'libdrm_radeon',
5200a23bdaSmrg  libraries : libdrm_radeon,
5300a23bdaSmrg  subdirs : ['.', 'libdrm'],
5400a23bdaSmrg  version : meson.project_version(),
5500a23bdaSmrg  requires_private : 'libdrm',
5600a23bdaSmrg  description : 'Userspace interface to kernel DRM services for radeon',
5700a23bdaSmrg)
5800a23bdaSmrg
5900a23bdaSmrgtest(
6000a23bdaSmrg  'radeon-symbol-check',
6100a23bdaSmrg  prog_bash,
6200a23bdaSmrg  env : env_test,
6300a23bdaSmrg  args : [files('radeon-symbol-check'), libdrm_radeon]
6400a23bdaSmrg)
65