diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2023-06-27 20:31:50 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2023-06-27 20:31:50 +0300 |
commit | 143398e35b2e3ee03be221e76ef77a742195e0aa (patch) | |
tree | a6cc6ada350d8a3229885ad1db48841029e3514c | |
parent | 651bc4d237501e5110dffa0b49c62f15695d5519 (diff) |
Release version 1.0.0+11v1.0.0+11
Add language manifest value.
Rely on new header pre-generation for version.hxx.
Add *.dylib to .gitignore file.
Bump build2 version requirement to 0.16.0-.
-rw-r--r-- | libhello/.gitignore | 1 | ||||
-rw-r--r-- | libhello/libhello/buildfile | 8 | ||||
-rw-r--r-- | libhello/manifest | 7 |
3 files changed, 5 insertions, 11 deletions
diff --git a/libhello/.gitignore b/libhello/.gitignore index 6435b97..1c363a0 100644 --- a/libhello/.gitignore +++ b/libhello/.gitignore @@ -12,6 +12,7 @@ *.pcm *.ifc *.so +*.dylib *.dll *.a *.lib diff --git a/libhello/libhello/buildfile b/libhello/libhello/buildfile index 28dc070..d0cdbe3 100644 --- a/libhello/libhello/buildfile +++ b/libhello/libhello/buildfile @@ -4,15 +4,7 @@ impl_libs = # Implementation dependencies. lib{hello}: {hxx ixx txx cxx}{** -version} hxx{version} $impl_libs $intf_libs -# Include the generated version header into the distribution (so that we don't -# pick up an installed one) and don't remove it when cleaning in src (so that -# clean results in a state identical to distributed). -# hxx{version}: in{version} $src_root/manifest -{ - dist = true - clean = ($src_root != $out_root) -} hxx{export}@./: cxx.importable = false diff --git a/libhello/manifest b/libhello/manifest index 0091a08..fa9f855 100644 --- a/libhello/manifest +++ b/libhello/manifest @@ -1,6 +1,7 @@ : 1 name: libhello -version: 1.0.0+10 +version: 1.0.0+11 +language: c++ project: hello summary: The "Hello World" example library license: MIT ; MIT License. @@ -11,5 +12,5 @@ src-url: https://git.build2.org/cgit/hello/libhello/tree/libhello?h=1.0 email: users@build2.org build-warning-email: builds@build2.org builds: all -depends: * build2 >= 0.14.0 -depends: * bpkg >= 0.14.0 +depends: * build2 >= 0.16.0- +depends: * bpkg >= 0.16.0- |