1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-03 16:29:15 +01:00
dxvk/src/spirv/meson.build
Philip Rebohle 25cae39cdb
[spirv] Remove SPIR-V tools integration
SPIR-V tools did not turn out to be useful, but increased the
binary size by a significant amount and caused build problems.

- spirv-opt: Far too slow for the intended purpose, and Nvidia
             specific shader issues have been reported and fixed.
- spirv-val: Not much value in practice since shaders can be
             written to a directory and validated manually.
2018-03-13 14:32:03 +01:00

9 lines
218 B
Meson

spirv_src = files([
'spirv_code_buffer.cpp',
'spirv_module.cpp',
])
spirv_lib = static_library('spirv', spirv_src,
include_directories : [ dxvk_include_path ],
override_options : ['cpp_std='+dxvk_cpp_std])