Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
glslang
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
glslang
Commits
517f39ee
Unverified
Commit
517f39ee
authored
Aug 26, 2020
by
John Kessenich
Committed by
GitHub
Aug 26, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2380 from null77/suppress-override-warnings
Suppress two override suggestion warnings.
parents
983698bb
bb52b5e4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
8 deletions
+10
-8
BUILD.gn
BUILD.gn
+10
-8
No files found.
BUILD.gn
View file @
517f39ee
...
@@ -59,13 +59,13 @@ action("glslang_build_info") {
...
@@ -59,13 +59,13 @@ action("glslang_build_info") {
script,
script,
template_file,
template_file,
]
]
outputs = [
outputs = [ out_file ]
out_file
]
args = [
args = [
rebase_path(src_dir, root_build_dir),
rebase_path(src_dir, root_build_dir),
"-i", rebase_path(template_file, root_build_dir),
"-i",
"-o", rebase_path(out_file, root_build_dir),
rebase_path(template_file, root_build_dir),
"-o",
rebase_path(out_file, root_build_dir),
]
]
}
}
...
@@ -228,10 +228,12 @@ template("glslang_sources_common") {
...
@@ -228,10 +228,12 @@ template("glslang_sources_common") {
"-Wno-ignored-qualifiers",
"-Wno-ignored-qualifiers",
"-Wno-implicit-fallthrough",
"-Wno-implicit-fallthrough",
"-Wno-inconsistent-missing-override",
"-Wno-inconsistent-missing-override",
"-Wno-sign-compare",
"-Wno-unused-variable",
"-Wno-missing-field-initializers",
"-Wno-missing-field-initializers",
"-Wno-newline-eof",
"-Wno-newline-eof",
"-Wno-sign-compare",
"-Wno-suggest-destructor-override",
"-Wno-suggest-override",
"-Wno-unused-variable",
]
]
}
}
if (is_win && !is_clang) {
if (is_win && !is_clang) {
...
@@ -291,9 +293,9 @@ executable("glslang_validator") {
...
@@ -291,9 +293,9 @@ executable("glslang_validator") {
}
}
defines = [ "ENABLE_OPT=1" ]
defines = [ "ENABLE_OPT=1" ]
deps = [
deps = [
":glslang_build_info",
":glslang_default_resource_limits_sources",
":glslang_default_resource_limits_sources",
":glslang_sources",
":glslang_sources",
":glslang_build_info",
]
]
public_configs = [ ":glslang_hlsl" ]
public_configs = [ ":glslang_hlsl" ]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment