summaryrefslogtreecommitdiff
path: root/hello/buildfile
diff options
context:
space:
mode:
Diffstat (limited to 'hello/buildfile')
-rw-r--r--hello/buildfile11
1 files changed, 11 insertions, 0 deletions
diff --git a/hello/buildfile b/hello/buildfile
new file mode 100644
index 0000000..95ac13d
--- /dev/null
+++ b/hello/buildfile
@@ -0,0 +1,11 @@
+import libs = libhello%lib{hello}
+
+./: exe{hello} doc{version} file{manifest}
+
+doc{version}: file{manifest} # Generated by the version module.
+doc{version}: dist = true
+
+exe{hello}: cxx{hello} $libs
+exe{hello}: test.arguments = World "Planet #345732"
+exe{hello}: test.output = test.out
+