diff options
author | shinchiro <shinchiro@users.noreply.github.com> | 2017-12-25 09:51:55 +0800 |
---|---|---|
committer | Kevin Mitchell <kevmitch@gmail.com> | 2017-12-24 23:30:28 -0700 |
commit | 31718c48ce4ceb9515fa678c01f45a5ec057f379 (patch) | |
tree | b3f7db70d65a5d6231ed334e2d49869d887318ec /wscript | |
parent | d588bdaaf7473685ce85438c0a7b80c77f719ece (diff) |
wscript: remove redundant libraries check for shaderc-static
libshaderc_combined.a already bundles every libs it depends on
References:
https://github.com/google/shaderc/tree/master/libshaderc#build-artifacts
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -740,8 +740,7 @@ video_output_features = [ 'deps': '!shaderc-shared', 'groups': ['shaderc'], 'func': check_cc(header_name='shaderc/shaderc.h', - lib=['shaderc_combined', 'glslang', 'SPIRV-Tools', - 'SPIRV-Tools-opt', 'stdc++']), + lib=['shaderc_combined', 'stdc++']), }, { 'name': '--shaderc', 'desc': 'libshaderc SPIR-V compiler', |