mirror of https://github.com/snes9xgit/snes9x.git
Fix SPIRV linking error on Ubuntu/Debian
This commit is contained in:
parent
fff7941ebf
commit
537fe6c637
|
@ -93,13 +93,14 @@ endif
|
||||||
|
|
||||||
if slang and opengl
|
if slang and opengl
|
||||||
glslang_dep = c_compiler.find_library('glslang', required: false)
|
glslang_dep = c_compiler.find_library('glslang', required: false)
|
||||||
|
hlsl_dep = c_compiler.find_library('HLSL', required: false)
|
||||||
spirv_dep = c_compiler.find_library('SPIRV', required: false)
|
spirv_dep = c_compiler.find_library('SPIRV', required: false)
|
||||||
osdependent_dep = c_compiler.find_library('OSDependent', required: false)
|
osdependent_dep = c_compiler.find_library('OSDependent', required: false)
|
||||||
ogl_compiler_dep = c_compiler.find_library('OGLCompiler', required: false)
|
ogl_compiler_dep = c_compiler.find_library('OGLCompiler', required: false)
|
||||||
spv_remapper_dep = c_compiler.find_library('SPVRemapper', required: false)
|
spv_remapper_dep = c_compiler.find_library('SPVRemapper', required: false)
|
||||||
|
|
||||||
if glslang_dep.found() and spirv_dep.found() and osdependent_dep.found() and ogl_compiler_dep.found() and spv_remapper_dep.found()
|
if glslang_dep.found() and hlsl_dep.found() and spirv_dep.found() and osdependent_dep.found() and ogl_compiler_dep.found() and spv_remapper_dep.found()
|
||||||
deps += [glslang_dep, spirv_dep, osdependent_dep, ogl_compiler_dep, spv_remapper_dep]
|
deps += [glslang_dep, hlsl_dep, spirv_dep, osdependent_dep, ogl_compiler_dep, spv_remapper_dep]
|
||||||
|
|
||||||
args += ['-DUSE_SLANG',
|
args += ['-DUSE_SLANG',
|
||||||
'-DSPIRV_CROSS_EXCEPTIONS_TO_ASSERTIONS',
|
'-DSPIRV_CROSS_EXCEPTIONS_TO_ASSERTIONS',
|
||||||
|
|
Loading…
Reference in New Issue