diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | build/bootstrap.build | 17 | ||||
-rw-r--r-- | buildfile | 7 | ||||
-rw-r--r-- | manifest | 4 | ||||
-rw-r--r-- | print/buildfile | 6 | ||||
-rw-r--r-- | version | 1 |
6 files changed, 12 insertions, 25 deletions
@@ -11,3 +11,5 @@ *.exe *.exe.dlls/ *.exe.manifest + +version diff --git a/build/bootstrap.build b/build/bootstrap.build index 0e7d401..bc4a8b1 100644 --- a/build/bootstrap.build +++ b/build/bootstrap.build @@ -1,21 +1,6 @@ project = libprint -using build@0.4.0 - -version = 1.0.0 - -abi_major = 1 -abi_minor = 0 -abi_patch = 0 -abi_prerelease = false - -revision = 0 - -dist.package = $project-$version - -if ($revision != 0) - dist.package += +$revision - +using version using config using dist using install @@ -1,3 +1,4 @@ -d = print/ -./: $d doc{version} file{manifest} -include $d +./: print/ doc{version} file{manifest} + +doc{version}: file{manifest} # Generated by the version module. +doc{version}: dist = true @@ -11,5 +11,5 @@ url: http://www.example.org/libprint email: hello-users@example.org build-email: builds@build2.org requires: c++11 -depends: * build2 >= 0.4.0 -depends: * bpkg >= 0.4.0 +depends: * build2 >= 0.5.0- +depends: * bpkg >= 0.5.0- diff --git a/print/buildfile b/print/buildfile index 1fd6140..a2f6500 100644 --- a/print/buildfile +++ b/print/buildfile @@ -3,10 +3,10 @@ lib{print}: {hxx cxx}{print} hxx{export} # For pre-releases use the complete version to make sure they cannot be used # in place of another pre-release or the final version. # -if $abi_prerelease - lib{print}: bin.lib.version = @-$version +if $version.pre_release + lib{print}: bin.lib.version = @"-$version.project_id" else - lib{print}: bin.lib.version = @-$abi_major.$abi_minor + lib{print}: bin.lib.version = @"-$version.major.$version.minor" cxx.poptions =+ "-I$src_root" obja{*}: cxx.poptions += -DLIBPRINT_STATIC_BUILD diff --git a/version b/version deleted file mode 100644 index 3eefcb9..0000000 --- a/version +++ /dev/null @@ -1 +0,0 @@ -1.0.0 |