summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorEmmanuel Leblond <emmanuel.leblond@gmail.com>2016-09-25 11:58:54 +0200
committerGitHub <noreply@github.com>2016-09-25 11:58:54 +0200
commitcfd17de23098297d076def400cd6d506700a5f03 (patch)
treea2f557614ccaf2a93846a555c0dbaf4296307def /SConstruct
parent20c7b65b7e3630ada9f2e8b6b64926ec05d68c4c (diff)
Add CC parameter to allow use of custom C compiler
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct3
1 files changed, 2 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index d168820f66..e08c46c51e 100644
--- a/SConstruct
+++ b/SConstruct
@@ -138,7 +138,8 @@ opts.Add('etc1','etc1 Texture compression support (yes/no)','yes')
opts.Add('builtin_zlib','Use built-in zlib (yes/no)','yes')
opts.Add('openssl','Use OpenSSL (yes/no/builtin)','no')
opts.Add('musepack','Musepack Audio (yes/no)','yes')
-opts.Add("CXX", "Compiler");
+opts.Add("CXX", "C++ Compiler")
+opts.Add("CC", "C Compiler")
opts.Add("CCFLAGS", "Custom flags for the C++ compiler");
opts.Add("CFLAGS", "Custom flags for the C compiler");
opts.Add("LINKFLAGS", "Custom flags for the linker");