Unverified Commit d550bebe by Courtney Goeltzenleuchter Committed by GitHub

Fix build error with Chromium & ANGLE (#2446)

Getting error about undefined symbol (include_dir) at line 320. Was trying to append to a non-existant variable. Bug #2445
parent c897c3bc
......@@ -317,7 +317,7 @@ executable("spirv-remap") {
defines = [ "ENABLE_OPT=1" ]
deps = [ ":glslang_sources" ]
include_dirs += [ "${spirv_tools_dir}/include" ]
include_dirs = [ "${spirv_tools_dir}/include" ]
configs -= _configs_to_remove
configs += _configs_to_add
......
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