Disabled missing qt4 tool, and added missing src/Sconcript
authorDmitriy Morozov <morozov@cs.duke.edu>
Mon, 30 Oct 2006 14:40:34 -0500
changeset 1 b227c7a027cd
parent 0 d95020656286
child 2 b75a0599c75b
Disabled missing qt4 tool, and added missing src/Sconcript
SConstruct
src/SConscript
--- a/SConstruct	Mon Oct 30 14:20:45 2006 -0500
+++ b/SConstruct	Mon Oct 30 14:40:34 2006 -0500
@@ -15,7 +15,7 @@
 # Setup environment
 base_env = 				Environment(options = optns,
 									ENV = os.environ,
-									tools=["default", "doxygen", "qt4"], 
+									tools=["default", "doxygen"], #, "qt4"], 
 									toolpath=["sconstools"])
 Help					(optns.GenerateHelpText(base_env))
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/SConscript	Mon Oct 30 14:40:34 2006 -0500
@@ -0,0 +1,10 @@
+Import('*')
+
+#sources = ['grid2D.cpp', 'debug.cpp']
+sources = ['debug.cpp']
+o = []
+
+for s in sources:
+	o += [env.Object(s)]
+
+Return('o')