meson.build revision 9f464c52
1# Copyright © 2017-2019 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 21inc_glx = include_directories('.') 22 23subdir('apple') 24if with_dri_platform == 'windows' 25 subdir('windows') 26endif 27 28files_libglx = files( 29 'clientattrib.c', 30 'clientinfo.c', 31 'compsize.c', 32 'create_context.c', 33 'eval.c', 34 'glxclient.h', 35 'glxcmds.c', 36 'glxconfig.c', 37 'glxconfig.h', 38 'glxcurrent.c', 39 'glx_error.c', 40 'glx_error.h', 41 'glxext.c', 42 'glxextensions.c', 43 'glxextensions.h', 44 'glxhash.c', 45 'glxhash.h', 46 'glx_pbuffer.c', 47 'glx_query.c', 48 'indirect_glx.c', 49 'indirect_init.h', 50 'indirect_texture_compression.c', 51 'indirect_transpose_matrix.c', 52 'indirect_vertex_array.c', 53 'indirect_vertex_array.h', 54 'indirect_vertex_array_priv.h', 55 'indirect_vertex_program.c', 56 'indirect_window_pos.c', 57 'packrender.h', 58 'packsingle.h', 59 'pixel.c', 60 'pixelstore.c', 61 'query_renderer.c', 62 'render2.c', 63 'renderpix.c', 64 'single2.c', 65 'singlepix.c', 66 'vertarr.c', 67) 68 69extra_libs_libglx = [] 70extra_deps_libgl = [] 71extra_ld_args_libgl = [] 72 73if with_glx == 'dri' 74 files_libglx += files( 75 'dri_common.c', 76 'dri_common.h', 77 'dri_common_query_renderer.c', 78 'dri_common_interop.c', 79 'xfont.c', 80 'drisw_glx.c', 81 'drisw_priv.h', 82 ) 83endif 84 85# dri2 86if with_glx == 'dri' and with_dri_platform == 'drm' and dep_libdrm.found() 87 files_libglx += files( 88 'dri2.c', 89 'dri2_glx.c', 90 'dri2.h', 91 'dri2_priv.h', 92 'dri_glx.c', 93 'dri_sarea.h', 94 'XF86dri.c', 95 'xf86dri.h', 96 'xf86dristr.h', 97 ) 98endif 99 100if with_dri3 101 files_libglx += files('dri3_glx.c', 'dri3_priv.h') 102endif 103 104if with_dri_platform == 'apple' 105 files_libglx += files('applegl_glx.c') 106 extra_libs_libglx += libappleglx 107elif with_dri_platform == 'windows' 108 files_libglx += files('driwindows_glx.c') 109 extra_libs_libglx += [ 110 libwindowsdri, 111 libwindowsglx, 112 ] 113 extra_deps_libgl = [ 114 meson.get_compiler('c').find_library('gdi32'), 115 meson.get_compiler('c').find_library('opengl32') 116 ] 117 extra_ld_args_libgl = '-Wl,--disable-stdcall-fixup' 118endif 119 120if not with_glvnd 121 gl_lib_name = 'GL' 122 gl_lib_version = '1.2.0' 123else 124 gl_lib_name = 'GLX_mesa' 125 gl_lib_version = '0.0.0' 126 files_libglx += files( 127 'g_glxglvnddispatchfuncs.c', 128 'g_glxglvnddispatchindices.h', 129 'glxglvnd.c', 130 'glxglvnd.h', 131 'glxglvnddispatchfuncs.h', 132 ) 133endif 134 135gl_lib_cargs = [ 136 '-D_REENTRANT', 137] 138 139libglx = static_library( 140 'glx', 141 [files_libglx, glx_generated], 142 include_directories : [inc_common, inc_glapi, inc_loader], 143 c_args : [ 144 c_vis_args, gl_lib_cargs, 145 '-DGL_LIB_NAME="lib@0@.so.@1@"'.format(gl_lib_name, gl_lib_version.split('.')[0]), 146 ], 147 link_with : [ 148 libloader, libloader_dri3_helper, libmesa_util, libxmlconfig, 149 extra_libs_libglx, 150 ], 151 dependencies : [dep_libdrm, dep_dri2proto, dep_glproto, dep_x11, dep_glvnd], 152) 153 154libgl = shared_library( 155 gl_lib_name, 156 [], 157 link_with : [libglapi_static, libglapi], 158 link_whole : libglx, 159 link_args : [ld_args_bsymbolic, ld_args_gc_sections, extra_ld_args_libgl], 160 dependencies : [ 161 dep_libdrm, dep_dl, dep_m, dep_thread, dep_x11, dep_xcb_glx, dep_xcb, 162 dep_x11_xcb, dep_xcb_dri2, dep_xext, dep_xfixes, dep_xdamage, dep_xxf86vm, 163 extra_deps_libgl, 164 ], 165 version : gl_lib_version, 166 install : true, 167) 168 169if with_tests 170 subdir('tests') 171endif 172