diff options
author | Dylan Baker <[email protected]> | 2017-11-13 17:58:51 -0800 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-12-04 14:36:58 -0800 |
commit | 6b4c7047d57178d3362a710ad503057c6a582ca3 (patch) | |
tree | 428d06c61e3044acaae3992f10fab034a47e298b /src/gallium/state_trackers/nine | |
parent | 0ba909f0f111824223bc38563d1a6bc73e69c2cc (diff) |
meson: build gallium nine state_tracker
v2: - set d3d_drivers_path instead of dri_drivers_path
- Fix nine guard to check for all relavent gallium drivers
- Link with libswdri and libswkmsdri when necessary
- Fix pkg-config generation
- Add missing comma
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/nine')
-rw-r--r-- | src/gallium/state_trackers/nine/meson.build | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/nine/meson.build b/src/gallium/state_trackers/nine/meson.build new file mode 100644 index 00000000000..797ef389a69 --- /dev/null +++ b/src/gallium/state_trackers/nine/meson.build @@ -0,0 +1,69 @@ +# Copyright © 2017 Intel Corporation + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + +nine_st_files = files( + 'adapter9.c', + 'authenticatedchannel9.c', + 'basetexture9.c', + 'buffer9.c', + 'cryptosession9.c', + 'cubetexture9.c', + 'device9.c', + 'device9ex.c', + 'device9video.c', + 'guid.c', + 'indexbuffer9.c', + 'iunknown.c', + 'nine_buffer_upload.c', + 'nine_debug.c', + 'nine_dump.c', + 'nineexoverlayextension.c', + 'nine_ff.c', + 'nine_helpers.c', + 'nine_lock.c', + 'nine_pipe.c', + 'nine_quirk.c', + 'nine_queue.c', + 'nine_shader.c', + 'nine_state.c', + 'pixelshader9.c', + 'query9.c', + 'resource9.c', + 'stateblock9.c', + 'surface9.c', + 'swapchain9.c', + 'swapchain9ex.c', + 'texture9.c', + 'threadpool.c', + 'vertexbuffer9.c', + 'vertexdeclaration9.c', + 'vertexshader9.c', + 'volume9.c', + 'volumetexture9.c', +) + +libnine_st = static_library( + 'nine_st', + nine_st_files, + c_args : c_vis_args, + include_directories : [ + inc_d3d9, inc_gallium, inc_include, inc_src, inc_gallium_aux, + ], +) |