meson: fix warnings about comparing unlike types
[mesa.git] / src / glx / apple / meson.build
1 # Copyright © 2017 Jon Turney
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 # library for native GL on macos
22 files_libappleglx = files(
23 'apple_cgl.c',
24 'apple_cgl.h',
25 'appledri.c',
26 'appledri.h',
27 'appledristr.h',
28 'apple_glapi.c',
29 'apple_glx.c',
30 'apple_glx_context.c',
31 'apple_glx_context.h',
32 'apple_glx_drawable.c',
33 'apple_glx_drawable.h',
34 'apple_glx.h',
35 'apple_glx_log.c',
36 'apple_glx_log.h',
37 'apple_glx_pbuffer.c',
38 'apple_glx_pixmap.c',
39 'apple_glx_surface.c',
40 'apple_visual.c',
41 'apple_visual.h',
42 'apple_xgl_api.h',
43 'apple_xgl_api_read.c',
44 'apple_xgl_api_stereo.c',
45 'apple_xgl_api_viewport.c',
46 'glx_empty.c',
47 )
48
49 dep_xplugin = null_dep
50 if with_dri_platform == 'apple'
51 dep_xplugin = meson.get_compiler('c').find_library('Xplugin')
52 endif
53
54 libappleglx = static_library(
55 'glxapple',
56 [files_libappleglx, glapitable_h],
57 include_directories: [inc_mesa, inc_glx, inc_src, inc_include, inc_glapi],
58 dependencies: [dep_xext, dep_xplugin],
59 c_args: [c_vis_args],
60 build_by_default: false,
61 )