aboutsummaryrefslogtreecommitdiff
path: root/bpkg/build
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-10-01 09:13:37 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-10-01 09:13:37 +0200
commit098460199c35218979e207a1709111e477ab9567 (patch)
tree55765e91a517759bf28672abeda96102f2f511c4 /bpkg/build
parent42bbdd0e7f0d78b622697bf4d4543c1aead22ae8 (diff)
build command genesis, some re-factoring
Diffstat (limited to 'bpkg/build')
-rw-r--r--bpkg/build17
1 files changed, 17 insertions, 0 deletions
diff --git a/bpkg/build b/bpkg/build
new file mode 100644
index 0000000..cc89599
--- /dev/null
+++ b/bpkg/build
@@ -0,0 +1,17 @@
+// file : bpkg/build -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BPKG_BUILD
+#define BPKG_BUILD
+
+#include <bpkg/types>
+#include <bpkg/build-options>
+
+namespace bpkg
+{
+ void
+ build (const build_options&, cli::scanner& args);
+}
+
+#endif // BPKG_BUILD