summaryrefslogtreecommitdiffstats
path: root/drivers/gl_context/SCsub
diff options
context:
space:
mode:
authorNinni Pipping <over999ships@gmail.com>2023-05-11 12:32:23 +0200
committerNinni Pipping <over999ships@gmail.com>2023-05-11 16:00:59 +0200
commit71ee65dc5701a0675ae6b1879a694a28c7206a63 (patch)
tree28eb06dc8c5422c9e0d0c7ca2a024f0c179da6b2 /drivers/gl_context/SCsub
parentfd4a06c51555904104b18494d0224f450d74fe2a (diff)
downloadredot-engine-71ee65dc5701a0675ae6b1879a694a28c7206a63.tar.gz
Enable shadow warnings and fix raised errors
Diffstat (limited to 'drivers/gl_context/SCsub')
-rw-r--r--drivers/gl_context/SCsub6
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/gl_context/SCsub b/drivers/gl_context/SCsub
index 2204c486c6..91240ce3e3 100644
--- a/drivers/gl_context/SCsub
+++ b/drivers/gl_context/SCsub
@@ -10,7 +10,11 @@ if env["platform"] in ["haiku", "macos", "windows", "linuxbsd"]:
]
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
- env.Prepend(CPPPATH=[thirdparty_dir])
+ # Treat glad headers as system headers to avoid raising warnings. Not supported on MSVC.
+ if not env.msvc:
+ env.Append(CPPFLAGS=["-isystem", Dir(thirdparty_dir).path])
+ else:
+ env.Prepend(CPPPATH=[thirdparty_dir])
env.Append(CPPDEFINES=["GLAD_ENABLED"])
env.Append(CPPDEFINES=["GLES_OVER_GL"])