mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-09 17:48:19 +00:00
CMake/BuildVulkanShaders: Fix check for GLSLANG_VALIDATOR_PROGRAM_FOUND
This commit is contained in:
parent
450e6a53f7
commit
69e312f5fb
|
@ -21,7 +21,7 @@ if(NOT GLSLANG_VALIDATOR_PROGRAM)
|
|||
endif()
|
||||
endif()
|
||||
|
||||
if(${GLSLANG_VALIDATOR_PROGRAM_FOUND} EQUAL FALSE)
|
||||
if(NOT GLSLANG_VALIDATOR_PROGRAM_FOUND)
|
||||
message(FATAL_ERROR "glslangValidator binary was not found. Did you install the Vulkan SDK / packages ?")
|
||||
endif()
|
||||
endif()
|
||||
|
|
Loading…
Reference in a new issue