blob: a80ab084ebb1d01773a4d3833ca9e5f02e0465d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright © 2017-2018 Intel Corporation
# SPDX-License-Identifier: MIT
osmesa_st_c_args = []
if with_platform_windows
if not with_shared_glapi
osmesa_st_c_args += ['-D_GLAPI_NO_EXPORTS']
endif
endif
libosmesa_st = static_library(
'osmesa_st',
'osmesa.c',
c_args : osmesa_st_c_args,
include_directories : [
inc_include, inc_src, inc_gallium, inc_gallium_aux, inc_mapi, inc_mesa,
],
dependencies : [idep_mesautil],
)
|