You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
688 B
21 lines
688 B
3 years ago
|
cmake_minimum_required(VERSION 3.12)
|
||
|
|
||
|
function(run_glslc exe exe_display)
|
||
|
execute_process(COMMAND ${exe} --help
|
||
|
OUTPUT_VARIABLE output
|
||
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||
|
RESULT_VARIABLE result
|
||
|
)
|
||
|
|
||
|
if(NOT result EQUAL 0)
|
||
|
message(SEND_ERROR "Result of ${exe_display} --help is ${result}, should be 0")
|
||
|
endif()
|
||
|
|
||
|
if(NOT output MATCHES "^glslc - Compile shaders into SPIR-V")
|
||
|
message(SEND_ERROR "Output of ${exe_display} --help is \"${output}\", should begin with \"glslc - Compile shaders into SPIR-V\"")
|
||
|
endif()
|
||
|
endfunction()
|
||
|
|
||
|
run_glslc("${VULKAN_GLSLC_EXECUTABLE}" "\${VULKAN_GLSLC_EXECUTABLE}")
|
||
|
run_glslc("${VULKAN_GLSLC_EXECUTABLE_TARGET}" "Vulkan::glslc")
|