aboutsummaryrefslogtreecommitdiff
path: root/bpkg
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg')
-rw-r--r--bpkg/.gitignore1
-rw-r--r--bpkg/bpkg.cxx13
-rw-r--r--bpkg/buildfile8
3 files changed, 22 insertions, 0 deletions
diff --git a/bpkg/.gitignore b/bpkg/.gitignore
new file mode 100644
index 0000000..5184a34
--- /dev/null
+++ b/bpkg/.gitignore
@@ -0,0 +1 @@
+bpkg
diff --git a/bpkg/bpkg.cxx b/bpkg/bpkg.cxx
new file mode 100644
index 0000000..6e35544
--- /dev/null
+++ b/bpkg/bpkg.cxx
@@ -0,0 +1,13 @@
+// file : bpkg/bpkg.cxx -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#include <iostream>
+#include <exception>
+
+using namespace std;
+
+int
+main ()
+{
+}
diff --git a/bpkg/buildfile b/bpkg/buildfile
new file mode 100644
index 0000000..2c22069
--- /dev/null
+++ b/bpkg/buildfile
@@ -0,0 +1,8 @@
+# file : bpkg/buildfile
+# copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
+# license : MIT; see accompanying LICENSE file
+
+import libs = libbutl%lib{butl}
+import libs += libbpkg%lib{bpkg}
+
+exe{bpkg}: cxx{bpkg} $libs