aboutsummaryrefslogtreecommitdiff
path: root/loader
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-12-14 16:46:08 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-12-14 16:46:08 +0200
commit589b66ec94d95b4bea8d9a0d23c8439dff9031de (patch)
tree1d2a46917ce16c956d88404597bd5fde352dfc7b /loader
parent8f2a63aa4e0e047154b09c7d0fd0f392bdf46f44 (diff)
Clean up buildfiles, make dist work
Diffstat (limited to 'loader')
-rw-r--r--loader/buildfile10
-rw-r--r--loader/loader.cxx2
2 files changed, 6 insertions, 6 deletions
diff --git a/loader/buildfile b/loader/buildfile
index bb5684e..ffa8a9c 100644
--- a/loader/buildfile
+++ b/loader/buildfile
@@ -2,8 +2,6 @@
# copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
-using cli
-
import libs += libbpkg%lib{bpkg}
import libs += libbutl%lib{butl}
import libs += libodb-pgsql%lib{odb-pgsql}
@@ -11,10 +9,12 @@ import libs += libodb%lib{odb}
include ../brep/
-loader = cxx{loader} cli.cxx{options}
-exe{brep-loader}: $loader ../brep/libso{brep} $libs
+exe{brep-loader}: \
+{ cxx}{ loader } \
+{hxx ixx cxx}{ options } \
+../brep/lib{brep} $libs
cli.options += -I $src_root --include-with-brackets --include-prefix loader \
--guard-prefix LOADER --cli-namespace brep::cli
-cli.cxx{options}: cli{options}
+{hxx ixx cxx}{options}: cli{options}
diff --git a/loader/loader.cxx b/loader/loader.cxx
index 3083366..7d8570a 100644
--- a/loader/loader.cxx
+++ b/loader/loader.cxx
@@ -704,7 +704,7 @@ main (int argc, char* argv[])
//
if (ops.version ())
{
- cout << "brep-loader 0.0.0" << endl
+ cout << "brep-loader 0.1.0" << endl
<< "Copyright (c) 2014-2015 Code Synthesis Ltd" << endl
<< "MIT; see accompanying LICENSE file" << endl;