Unverified Commit ca042a0f by John Kessenich Committed by GitHub

Merge pull request #1518 from Kangz/fix_dawn

BUILD.gn: glslang_sources need the public config too
parents 2e0806c7 6857c238
......@@ -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",
]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment