meson: build gallium based osmesa
[mesa.git] / src / gallium / targets / osmesa / meson.build
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
21 osmesa_link_with = []
22 osmesa_link_args = []
23 osmesa_comp_args = ['-DGALLIUM_SOFTPIPE', '-DGALLIUM_TRACE']
24 osmesa_deps = []
25
26 if with_shared_glapi
27 osmesa_link_with += libglapi
28 endif
29 if with_ld_version_script
30 osmesa_link_args += [
31 '-Wl,--version-script', join_paths(meson.current_source_dir(), 'osmesa.sym')
32 ]
33 endif
34
35 if with_llvm
36 osmesa_comp_args += '-DGALLIUM_LLVMPIPE'
37 osmesa_deps += dep_llvm
38 osmesa_link_with += libllvmpipe
39 endif
40 # TODO: swr
41
42 libosmesa = shared_library(
43 osmesa_lib_name,
44 'target.c',
45 c_args : [c_vis_args, osmesa_comp_args],
46 cpp_args : [cpp_vis_args, osmesa_comp_args],
47 link_args : [ld_args_gc_sections, osmesa_link_args],
48 include_directories : [
49 inc_include, inc_src, inc_gallium, inc_gallium_aux, inc_gallium_winsys,
50 inc_gallium_drivers,
51 ],
52 link_whole : [libosmesa_st],
53 link_with : [
54 libmesa_gallium, libgallium, libglapi_static, libws_null, libtrace,
55 libsoftpipe, osmesa_link_with,
56 ],
57 dependencies : [dep_selinux, dep_thread, dep_clock, dep_unwind, osmesa_deps],
58 version : '8.0.0',
59 install : true,
60 )
61
62 pkg.generate(
63 name : 'osmesa',
64 description : 'Mesa Off-screen Rendering Library',
65 version : '8',
66 libraries : libosmesa,
67 libraries_private : gl_priv_libs,
68 )