add variants and link executable to toplevel
authorMatthias Braun <matze@braunis.de>
Tue, 16 Nov 2004 17:51:31 +0000 (17:51 +0000)
committerMatthias Braun <matze@braunis.de>
Tue, 16 Nov 2004 17:51:31 +0000 (17:51 +0000)
SVN-Revision: 2098

SConstruct
src/SConscript

index 557be7e..54c14b1 100644 (file)
@@ -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")
 
index ccb8f8c..56170c7 100644 (file)
@@ -10,4 +10,4 @@ app = env.Program(
 )
 
 # hacky way for now...
-AddPostAction(app, "ln -s $TARGET .")
+AddPostAction(app, "ln -sf $TARGET .")