summaryrefslogtreecommitdiffstats
path: root/modules/websocket
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-04-25 12:22:22 +0200
committerGitHub <noreply@github.com>2019-04-25 12:22:22 +0200
commit24005bc03d4774afb5a3eb44db25711c3a9cedf1 (patch)
treefa4d2650672a63b0f4a214c1c6aaff7310eb580c /modules/websocket
parent7dc7cbea0a576b65562988dee1c143dcc945d369 (diff)
parentc2a669a9f03e249fb4fca96a2adf63256eb8dfa2 (diff)
downloadredot-engine-24005bc03d4774afb5a3eb44db25711c3a9cedf1.tar.gz
Merge pull request #28396 from akien-mga/scons-capture-the-flags
SCons: Review uses of CCFLAGS, CXXFLAGS and CPPFLAGS
Diffstat (limited to 'modules/websocket')
-rw-r--r--modules/websocket/SCsub2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/websocket/SCsub b/modules/websocket/SCsub
index 0345e533bc..12b4969cf7 100644
--- a/modules/websocket/SCsub
+++ b/modules/websocket/SCsub
@@ -88,7 +88,7 @@ if env['builtin_libwebsockets'] and not env["platform"] == "javascript": # alrea
env_lws.Append(CPPPATH=[helper_dir])
if env["platform"] == "uwp":
- env_lws.Append(CCFLAGS=["/DLWS_MINGW_SUPPORT"])
+ env_lws.Append(CPPFLAGS=["/DLWS_MINGW_SUPPORT"])
env_thirdparty = env_lws.Clone()
env_thirdparty.disable_warnings()