5 lines
195 B
CMake
5 lines
195 B
CMake
execute_process(COMMAND bash -c "${ROOT_FOLDER}/Scripts/CompileShaders.sh" RESULT_VARIABLE res_var)
|
|
if(NOT "${res_var}" STREQUAL "0")
|
|
message(FATAL_ERROR "Failed to recompile shaders")
|
|
endif()
|