diff options
| author | 2021-06-30 21:47:57 -0400 | |
|---|---|---|
| committer | 2021-06-30 21:47:57 -0400 | |
| commit | bab400daafaed898840c979e04717934cb977135 (patch) | |
| tree | c0e91c958cca196000744303532687e9a0cfc20f /src | |
| parent | Merge pull request #6471 from lat9nq/dump-as-mod (diff) | |
| parent | cmake: Check dependencies for Linux Qt package (diff) | |
| download | yuzu-bab400daafaed898840c979e04717934cb977135.tar.gz yuzu-bab400daafaed898840c979e04717934cb977135.tar.xz yuzu-bab400daafaed898840c979e04717934cb977135.zip | |
Merge pull request #6459 from lat9nq/ubuntu-fixes
cmake: Improve Linux dependency checking for externals
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/host_shaders/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/video_core/host_shaders/CMakeLists.txt b/src/video_core/host_shaders/CMakeLists.txt index 2208e1922..c9cff7450 100644 --- a/src/video_core/host_shaders/CMakeLists.txt +++ b/src/video_core/host_shaders/CMakeLists.txt | |||
| @@ -18,7 +18,10 @@ set(SHADER_FILES | |||
| 18 | vulkan_uint8.comp | 18 | vulkan_uint8.comp |
| 19 | ) | 19 | ) |
| 20 | 20 | ||
| 21 | find_program(GLSLANGVALIDATOR "glslangValidator" REQUIRED) | 21 | find_program(GLSLANGVALIDATOR "glslangValidator") |
| 22 | if ("${GLSLANGVALIDATOR}" STREQUAL "GLSLANGVALIDATOR-NOTFOUND") | ||
| 23 | message(FATAL_ERROR "Required program `glslangValidator` not found.") | ||
| 24 | endif() | ||
| 22 | 25 | ||
| 23 | set(GLSL_FLAGS "") | 26 | set(GLSL_FLAGS "") |
| 24 | set(QUIET_FLAG "--quiet") | 27 | set(QUIET_FLAG "--quiet") |