diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2016-10-25 21:36:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-25 21:36:02 +0200 |
commit | c7f9d853e206c15981330af46cfd0a0fc43fc5ef (patch) | |
tree | 8cd700f216844f200960d005342ae22cdf0e1039 /SConstruct | |
parent | d067ec87531cd8a651d1b0dd92fa80567dcfe8ba (diff) | |
parent | ace18d28d2cc02c0b59b9d90b3f6f578d2617ed8 (diff) |
Merge pull request #6898 from zaps166/scons-msg-fix
"CCFLAGS" are for C and C++ compiler
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index c28b40652a..72de2e2004 100644 --- a/SConstruct +++ b/SConstruct @@ -139,7 +139,7 @@ opts.Add('glew','GLEW library for the gl_context (system/builtin)','builtin') opts.Add('xaudio2','XAudio2 audio driver (yes/no)','no') opts.Add("CXX", "C++ Compiler") opts.Add("CC", "C Compiler") -opts.Add("CCFLAGS", "Custom flags for the C++ compiler"); +opts.Add("CCFLAGS", "Custom flags for the C/C++ compiler"); opts.Add("CFLAGS", "Custom flags for the C compiler"); opts.Add("LINKFLAGS", "Custom flags for the linker"); opts.Add('unix_global_settings_path', 'unix-specific path to system-wide settings. Currently only used by templates.','') |