summaryrefslogtreecommitdiff
path: root/cxx/libcpp/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'cxx/libcpp/wscript')
-rw-r--r--cxx/libcpp/wscript15
1 files changed, 15 insertions, 0 deletions
diff --git a/cxx/libcpp/wscript b/cxx/libcpp/wscript
new file mode 100644
index 0000000..77aa4fe
--- /dev/null
+++ b/cxx/libcpp/wscript
@@ -0,0 +1,15 @@
+# Copyright 2013 Gedare Bloom (gedare@rtems.org)
+#
+# This file's license is 2-clause BSD as in this distribution's LICENSE.2 file.
+#
+
+# Waf build script for an RTEMS Hello
+import rtems_waf.rtems as rtems
+
+def build(bld):
+ rtems.build(bld)
+
+ bld(features = 'cxx cxxstlib',
+ target = 'foo',
+ source = ['foo.cc', 'foo1.cpp'])
+