projects
/
supertux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6ba9f90
)
add variants and link executable to toplevel
author
Matthias Braun
<matze@braunis.de>
Tue, 16 Nov 2004 17:51:31 +0000
(17:51 +0000)
committer
Matthias Braun
<matze@braunis.de>
Tue, 16 Nov 2004 17:51:31 +0000
(17:51 +0000)
SVN-Revision: 2098
SConstruct
patch
|
blob
|
history
src/SConscript
patch
|
blob
|
history
diff --git
a/SConstruct
b/SConstruct
index
557be7e
..
54c14b1
100644
(file)
--- a/
SConstruct
+++ b/
SConstruct
@@
-73,7
+73,7
@@
if str(env['VARIANT']) == "optimize":
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")
diff --git
a/src/SConscript
b/src/SConscript
index
ccb8f8c
..
56170c7
100644
(file)
--- a/
src/SConscript
+++ b/
src/SConscript
@@
-10,4
+10,4
@@
app = env.Program(
)
# hacky way for now...
-AddPostAction(app, "ln -s $TARGET .")
+AddPostAction(app, "ln -s
f
$TARGET .")