From eabb1afc66f710880ba43d6bfcfb9c7be6e97026 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 1 Sep 2015 13:00:01 +0200 Subject: Initialize build system --- bpkg/.gitignore | 1 + bpkg/bpkg.cxx | 13 +++++++++++++ bpkg/buildfile | 8 ++++++++ 3 files changed, 22 insertions(+) create mode 100644 bpkg/.gitignore create mode 100644 bpkg/bpkg.cxx create mode 100644 bpkg/buildfile (limited to 'bpkg') 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 +#include + +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 -- cgit v1.1