1b8e80941Smrg# Copyright © 2017 Intel Corporation
2b8e80941Smrg
3b8e80941Smrg# Permission is hereby granted, free of charge, to any person obtaining a copy
4b8e80941Smrg# of this software and associated documentation files (the "Software"), to deal
5b8e80941Smrg# in the Software without restriction, including without limitation the rights
6b8e80941Smrg# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7b8e80941Smrg# copies of the Software, and to permit persons to whom the Software is
8b8e80941Smrg# furnished to do so, subject to the following conditions:
9b8e80941Smrg
10b8e80941Smrg# The above copyright notice and this permission notice shall be included in
11b8e80941Smrg# all copies or substantial portions of the Software.
12b8e80941Smrg
13b8e80941Smrg# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14b8e80941Smrg# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15b8e80941Smrg# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16b8e80941Smrg# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17b8e80941Smrg# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18b8e80941Smrg# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19b8e80941Smrg# SOFTWARE.
20b8e80941Smrg
21b8e80941Smrg# TODO: support non-static targets
22b8e80941Smrg# Static targets are always enabled in autotools (unless you modify
23b8e80941Smrg# configure.ac)
24b8e80941Smrg
25b8e80941Smrggallium_xlib_c_args = [
26b8e80941Smrg  '-DGALLIUM_SOFTPIPE',
27b8e80941Smrg]
28b8e80941Smrggallium_xlib_ld_args = []
29b8e80941Smrggallium_xlib_link_with = []
30b8e80941Smrggallium_xlib_link_depends = []
31b8e80941Smrg
32b8e80941Smrgif with_ld_version_script
33b8e80941Smrg  gallium_xlib_ld_args += ['-Wl,--version-script', join_paths(meson.current_source_dir(), 'libgl-xlib.sym')]
34b8e80941Smrg  gallium_xlib_link_depends += files('libgl-xlib.sym')
35b8e80941Smrgendif
36b8e80941Smrgif with_shared_glapi
37b8e80941Smrg  gallium_xlib_link_with += libglapi
38b8e80941Smrgendif
39b8e80941Smrg
40b8e80941Smrglibgl = shared_library(
41b8e80941Smrg  'GL',
42b8e80941Smrg  files('xlib.c'),
43b8e80941Smrg  include_directories : [
44b8e80941Smrg    inc_common, inc_gallium_winsys, inc_gallium_drivers,
45b8e80941Smrg    include_directories('../../state_trackers/glx/xlib'),
46b8e80941Smrg  ],
47b8e80941Smrg  c_args : [c_vis_args, gallium_xlib_c_args],
48b8e80941Smrg  link_args : [ld_args_bsymbolic, ld_args_gc_sections, gallium_xlib_ld_args],
49b8e80941Smrg  link_depends : gallium_xlib_link_depends,
50b8e80941Smrg  link_with : [
51b8e80941Smrg    libxlib, libws_xlib, libglapi_static,
52b8e80941Smrg    libgallium, libmesa_gallium, gallium_xlib_link_with,
53b8e80941Smrg  ],
54b8e80941Smrg  dependencies : [dep_thread, dep_clock, dep_unwind, driver_swrast, driver_swr],
55b8e80941Smrg  install : true,
56b8e80941Smrg  version : '1.5.0',
57b8e80941Smrg)
58