modetest: switch usage to proper options grammar
[drm/libdrm.git] / tests / meson.build
blobac9e66b01ed324cbb0568b98877118679fd14e63
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 inc_tests = include_directories('.')
23 subdir('util')
24 subdir('modeprint')
25 subdir('proptest')
26 subdir('modetest')
27 subdir('vbltest')
28 if with_radeon
29   subdir('radeon')
30 endif
31 if with_amdgpu
32   subdir('amdgpu')
33 endif
34 if with_exynos
35   subdir('exynos')
36 endif
37 if with_tegra
38   subdir('tegra')
39 endif
40 if with_etnaviv
41   subdir('etnaviv')
42 endif
43 if with_nouveau
44   subdir('nouveau')
45 endif
47 drmsl = executable(
48   'drmsl',
49   files('drmsl.c'),
50   include_directories : [inc_root, inc_drm],
51   link_with : libdrm,
52   c_args : libdrm_c_args,
55 hash = executable(
56   'hash',
57   files('hash.c'),
58   include_directories : [inc_root, inc_drm],
59   link_with : libdrm,
60   c_args : libdrm_c_args,
63 drmdevice = executable(
64   'drmdevice',
65   files('drmdevice.c'),
66   include_directories : [inc_root, inc_drm],
67   link_with : libdrm,
68   c_args : libdrm_c_args,
69   install : with_install_tests,
72 test('hash', hash)
73 test('drmsl', drmsl)
74 test('drmdevice', drmdevice)