tests, it has them
authorThomas Nagy <tnagy1024@gmail.com>
Mon, 24 Jan 2011 15:39:52 +0000 (15:39 +0000)
committerThomas Nagy <tnagy1024@gmail.com>
Mon, 24 Jan 2011 15:39:52 +0000 (15:39 +0000)
git-svn-id: https://waf.googlecode.com/svn/trunk@10909 f0382ac9-c320-0410-b3f0-b508d59f5a85

playground/boost/wscript [new file with mode: 0644]

diff --git a/playground/boost/wscript b/playground/boost/wscript
new file mode 100644 (file)
index 0000000..1db9763
--- /dev/null
@@ -0,0 +1,19 @@
+#! /usr/bin/env python\r
+\r
+"""\r
+The boost tool needs to be rewritten\r
+"""\r
+\r
+top = '.'\r
+out = 'build'\r
+\r
+def options(opt):\r
+    opt.load('compiler_cxx boost')\r
+\r
+def configure(conf):\r
+    conf.load('compiler_cxx boost')\r
+    conf.check_boost()\r
+\r
+def build(bld):\r
+    pass\r
+\r