• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright © 2017 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
21osmesa_link_with = []
22osmesa_link_args = []
23osmesa_link_deps = []
24
25if with_shared_glapi
26  osmesa_link_with += libglapi
27endif
28if with_ld_version_script
29  osmesa_link_args += [
30    '-Wl,--version-script', join_paths(meson.current_source_dir(), 'osmesa.sym')
31  ]
32  osmesa_link_deps += files('osmesa.sym')
33endif
34
35osmesa_def = custom_target(
36  'osmesa.def',
37  input: 'osmesa.def.in',
38  output : 'osmesa.def',
39  command : [prog_python, gen_vs_module_defs_py,
40             '--in_file', '@INPUT@', '--out_file', '@OUTPUT@',
41             '--compiler_id', cc.get_argument_syntax(), '--cpu_family', host_machine.cpu_family()]
42)
43
44libosmesa = shared_library(
45  osmesa_lib_name,
46  'target.c',
47  gnu_symbol_visibility : 'hidden',
48  link_args : [ld_args_gc_sections, osmesa_link_args],
49  vs_module_defs : osmesa_def,
50  include_directories : [
51    inc_include, inc_src, inc_gallium, inc_gallium_aux, inc_gallium_winsys,
52    inc_gallium_drivers,
53  ],
54  link_depends : osmesa_link_deps,
55  link_whole : [libosmesa_st, libglapi_static],
56  link_with : [
57    libmesa, libgallium, libws_null, osmesa_link_with,
58  ],
59  dependencies : [
60    dep_ws2_32, dep_selinux, dep_thread, dep_clock, dep_unwind, driver_swrast
61  ],
62  name_prefix : host_machine.system() == 'windows' ? '' : 'lib',  # otherwise mingw will create libosmesa.dll
63  soversion : host_machine.system() == 'windows' ? '' : '8',
64  version : '8.0.0',
65  darwin_versions : '9.0.0',
66  install : true,
67)
68
69pkg.generate(
70  name : 'osmesa',
71  description : 'Mesa Off-screen Rendering Library',
72  version : '8.0.0',
73  libraries : libosmesa,
74  libraries_private : gl_priv_libs,
75)
76
77if with_tests
78  test('osmesa-render',
79    executable(
80      'osmesa-render',
81      'test-render.cpp',
82      include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux],
83      link_with: libosmesa,
84      dependencies : [idep_gtest],
85    ),
86    suite: 'gallium',
87    protocol : gtest_test_protocol,
88  )
89endif
90