Update of /cvsroot/super-tux/supertux
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16400
Modified Files:
SConstruct
Log Message:
add variants and link executable to toplevel
Index: SConstruct
===================================================================
RCS file: /cvsroot/super-tux/supertux/SConstruct,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- SConstruct 16 Nov 2004 17:46:56 -0000 1.9
+++ SConstruct 16 Nov 2004 17:49:35 -0000 1.10
@@ -73,7 +73,7 @@
env.Append(CXXFLAGS = "-O2 -g")
elif str(env['VARIANT']) == "debug":
env.Append(CXXFLAGS = "-O0 -g3")
- env.Append(CPPDEFINES = "DEBUG")
+ env.Append(CPPDEFINES = { "DEBUG":"1" })
elif str(env['VARIANT']) == "profile":
env.Append(CXXFLAGS = "-pg -O2")
|