summaryrefslogtreecommitdiff
path: root/led/complex1/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'led/complex1/wscript')
-rw-r--r--led/complex1/wscript14
1 files changed, 14 insertions, 0 deletions
diff --git a/led/complex1/wscript b/led/complex1/wscript
new file mode 100644
index 0000000..398a979
--- /dev/null
+++ b/led/complex1/wscript
@@ -0,0 +1,14 @@
+# 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 cxxprogram',
+ target = 'complex1.exe',
+ source = ['periodic.c', 'main.cc', 'menu.cc', 'test.cc'])