From 6857c23825e35692121e539b30723c4d05e819df Mon Sep 17 00:00:00 2001 From: Corentin Wallez Date: Wed, 3 Oct 2018 13:15:23 -0400 Subject: [PATCH] BUILD.gn: glslang_sources need the public config too --- BUILD.gn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index 8f8e81f0..6239fd02 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -40,6 +40,8 @@ config("glslang_public") { } source_set("glslang_sources") { + public_configs = [ ":glslang_public" ] + sources = [ "OGLCompilersDLL/InitializeDll.cpp", "OGLCompilersDLL/InitializeDll.h", @@ -152,8 +154,6 @@ source_set("glslang_sources") { } static_library("glslang_static") { - public_configs = [ ":glslang_public" ] - deps = [ ":glslang_sources", ]