Path: blob/21.2-virgl/src/gallium/frontends/nine/meson.build
4561 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.1920nine_st_files = files(21'adapter9.c',22'authenticatedchannel9.c',23'basetexture9.c',24'buffer9.c',25'cryptosession9.c',26'cubetexture9.c',27'device9.c',28'device9ex.c',29'device9video.c',30'guid.c',31'indexbuffer9.c',32'iunknown.c',33'nine_buffer_upload.c',34'nine_debug.c',35'nine_dump.c',36'nineexoverlayextension.c',37'nine_ff.c',38'nine_helpers.c',39'nine_lock.c',40'nine_memory_helper.c',41'nine_pipe.c',42'nine_quirk.c',43'nine_queue.c',44'nine_shader.c',45'nine_state.c',46'pixelshader9.c',47'query9.c',48'resource9.c',49'stateblock9.c',50'surface9.c',51'swapchain9.c',52'swapchain9ex.c',53'texture9.c',54'threadpool.c',55'vertexbuffer9.c',56'vertexdeclaration9.c',57'vertexshader9.c',58'volume9.c',59'volumetexture9.c',60)6162libnine_st = static_library(63'nine_st',64nine_st_files,65gnu_symbol_visibility : 'hidden',66include_directories : [67inc_d3d9, inc_gallium, inc_include, inc_src, inc_gallium_aux,68],69dependencies : [70dep_thread, idep_nir, idep_nir_headers71],72link_with : [73libmesa_gallium74]75)767778