From 2858073fd03616f6fef0351256fc897352088987 Mon Sep 17 00:00:00 2001 From: sfan5 Date: Sun, 19 Dec 2021 17:43:22 +0100 Subject: wscript: switch shaderc checks to pkgconfig Shaderc has been shipping .pc files for almost three years and we all know of the advantages. If this turns out to be problematic the old checks can be re-added but I'd like to avoid doing this preemptively. --- wscript | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index a0227e648e..f4ad6c6d95 100644 --- a/wscript +++ b/wscript @@ -680,14 +680,14 @@ video_output_features = [ 'desc': 'libshaderc SPIR-V compiler (shared library)', 'deps': '!static-build', 'groups': ['shaderc'], - 'func': check_cc(header_name='shaderc/shaderc.h', lib='shaderc_shared'), + 'func': check_pkg_config('shaderc'), }, { 'name': 'shaderc-static', 'desc': 'libshaderc SPIR-V compiler (static library)', 'deps': '!shaderc-shared', 'groups': ['shaderc'], - 'func': check_cc(header_name='shaderc/shaderc.h', - lib=['shaderc_combined', 'stdc++']), + 'func': any_check(check_pkg_config('shaderc_combined'), + check_pkg_config('shaderc_static')), }, { 'name': '--shaderc', 'desc': 'libshaderc SPIR-V compiler', -- cgit v1.2.3