You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Building https://github.com/google/shaderc doesn't work because there are issues with install support in meson. But I don't need install, so I disabled it. Unfortunately this doesn't work too.
To Reproduce
Try to disable glslang install while building shaderc. Example wrap (source)
Describe the bug
Building https://github.com/google/shaderc doesn't work because there are issues with
install
support in meson. But I don't need install, so I disabled it. Unfortunately this doesn't work too.To Reproduce
Try to disable glslang install while building shaderc. Example wrap (source)
The issue is simple, for this expression, when
SKIP_GLSLANG_INSTALL
is set to ON.set(GLSLANG_ENABLE_INSTALL $<NOT:${SKIP_GLSLANG_INSTALL}>)
The following expression will evaluate truthfully, while it shouldn't.
if (GLSLANG_ENABLE_INSTALL)
I've sent workaround to shaderc google/shaderc#1415 but not sure they will want to workaround meson issues, although it is small change.
Expected behavior
It works.
system parameters
The text was updated successfully, but these errors were encountered: