diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-12-07 12:14:36 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-12-07 12:14:36 +0200 |
commit | c092793e74d0778b0aff653860f274c8cc31c374 (patch) | |
tree | cac98221124df02842e3e61f80e928ac299c6739 /build/b.cxx | |
parent | 41d3540e97b87fabc58af6226e6b7784767bc047 (diff) |
Add version file
Diffstat (limited to 'build/b.cxx')
-rw-r--r-- | build/b.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/build/b.cxx b/build/b.cxx index 9a88721..3eab437 100644 --- a/build/b.cxx +++ b/build/b.cxx @@ -16,9 +16,10 @@ #include <iostream> #include <system_error> -#include <butl/version> #include <butl/filesystem> +#include <build/version> + #include <build/types> #include <build/spec> #include <build/operation> @@ -66,7 +67,7 @@ main (int argc, char* argv[]) // if (ops.version ()) { - cout << "build2 0.1.0.a1" << endl + cout << "build2 " << BUILD_VERSION_STR<< endl << "libbutl " << LIBBUTL_VERSION_STR << endl << "Copyright (c) 2014-2015 Code Synthesis Ltd" << endl << "This is free software released under the MIT license." << endl; |