Path: blob/21.2-virgl/src/gallium/drivers/i915/meson.build
4570 views
# Copyright © 2017 Intel Corporation12# Permission is hereby granted, free of charge, to any person obtaining a copy3# of this software and associated documentation files (the "Software"), to deal4# in the Software without restriction, including without limitation the rights5# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell6# copies of the Software, and to permit persons to whom the Software is7# furnished to do so, subject to the following conditions:89# The above copyright notice and this permission notice shall be included in10# all copies or substantial portions of the Software.1112# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR13# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,14# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE15# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER16# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,17# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE18# SOFTWARE.1920files_i915 = files(21'i915_batchbuffer.h',22'i915_batch.h',23'i915_blit.c',24'i915_blit.h',25'i915_clear.c',26'i915_context.c',27'i915_context.h',28'i915_debug.c',29'i915_debug_fp.c',30'i915_debug.h',31'i915_debug_private.h',32'i915_flush.c',33'i915_fpc_emit.c',34'i915_fpc.h',35'i915_fpc_optimize.c',36'i915_fpc_translate.c',37'i915_prim_emit.c',38'i915_prim_vbuf.c',39'i915_public.h',40'i915_query.c',41'i915_query.h',42'i915_reg.h',43'i915_resource_buffer.c',44'i915_resource.c',45'i915_resource.h',46'i915_resource_texture.c',47'i915_screen.c',48'i915_screen.h',49'i915_state.c',50'i915_state_derived.c',51'i915_state_dynamic.c',52'i915_state_emit.c',53'i915_state_fpc.c',54'i915_state.h',55'i915_state_immediate.c',56'i915_state_inlines.h',57'i915_state_sampler.c',58'i915_state_static.c',59'i915_surface.c',60'i915_surface.h',61'i915_winsys.h',62)6364libi915 = static_library(65'i915',66files_i915,67gnu_symbol_visibility : 'hidden',68include_directories : [inc_include, inc_src, inc_gallium, inc_gallium_aux],69dependencies : idep_nir,70)7172driver_i915 = declare_dependency(73compile_args : '-DGALLIUM_I915',74link_with : [libi915, libi915drm],75)767778