From 65ad12e79ae17c72e04af03371ac32df7e37f229 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Fri, 27 Sep 2019 09:39:53 +0200 Subject: glslang: Disable warnings and allow unbundling --- platform/x11/detect.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'platform') diff --git a/platform/x11/detect.py b/platform/x11/detect.py index ddb3af79f8..9d5affcb3c 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -323,6 +323,9 @@ def configure(env): env.Append(CPPDEFINES=['VULKAN_ENABLED']) if not env['builtin_vulkan']: env.ParseConfig('pkg-config vulkan --cflags --libs') + if not env['builtin_glslang']: + # No pkgconfig file for glslang so far + env.Append(LIBS=['glslang', 'SPIRV']) #env.Append(CPPDEFINES=['OPENGL_ENABLED']) env.Append(LIBS=['GL']) -- cgit v1.2.3