summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-03-06 01:02:36 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-03-06 01:02:36 +0300
commit25f38465e10c8b391333bf9fdc30310fd67ad202 (patch)
tree74dacd610db13bbf444d895e86bfa3e99a48e930
parentb563c053e6296fa7c6d313ef16c556def009b1d2 (diff)
Release version 1.0.0+2
-rw-r--r--libhello/manifest8
-rw-r--r--libmhello/libmhello/buildfile11
-rw-r--r--libmhello/manifest15
3 files changed, 16 insertions, 18 deletions
diff --git a/libhello/manifest b/libhello/manifest
index 3299c85..caec93d 100644
--- a/libhello/manifest
+++ b/libhello/manifest
@@ -1,6 +1,6 @@
: 1
name: libhello
-version: 1.0.0+1
+version: 1.0.0+2
project: hello
summary: The "Hello World" example library
license: MIT
@@ -13,6 +13,6 @@ url: https://git.build2.org/cgit/hello/libhello
src-url: https://git.build2.org/cgit/hello/libhello/tree/libhello?h=1.0
email: users@build2.org
build-email: builds@build2.org
-#builds: all
-depends: * build2 >= 0.8.0-
-depends: * bpkg >= 0.8.0-
+builds: all
+depends: * build2 >= 0.9.0
+depends: * bpkg >= 0.9.0
diff --git a/libmhello/libmhello/buildfile b/libmhello/libmhello/buildfile
index 8ba9010..e70c320 100644
--- a/libmhello/libmhello/buildfile
+++ b/libmhello/libmhello/buildfile
@@ -2,16 +2,19 @@ import int_libs = libstd-modules%liba{std-modules}
lib{mhello}: {mxx cxx}{hello} $int_libs
+# Export options.
+#
+lib{mhello}: cxx.export.libs = $int_libs
+
# For pre-releases use the complete version to make sure they cannot be used
-# in place of another pre-release or the final version.
+# in place of another pre-release or the final version. See the version module
+# for details on the version.* variable values.
#
if $version.pre_release
lib{mhello}: bin.lib.version = @"-$version.project_id"
else
lib{mhello}: bin.lib.version = @"-$version.major.$version.minor"
-lib{mhello}: cxx.export.libs = $int_libs
-
# Install into the libmhello/ subdirectory of, say, /usr/include/.
#
-mxx{*}: install = include/$project/
+mxx{*}: install = include/libmhello/
diff --git a/libmhello/manifest b/libmhello/manifest
index 73077d7..abcd937 100644
--- a/libmhello/manifest
+++ b/libmhello/manifest
@@ -13,18 +13,13 @@ url: https://git.build2.org/cgit/hello/libhello
src-url: https://git.build2.org/cgit/hello/libhello/tree/libmhello?h=1.0
email: users@build2.org
build-email: builds@build2.org
-#builds: all
-#build-exclude: *-msvc_15u0** ; Broken C++ modules support.
-#build-include: *-msvc_15u**
-#build-include: *-clang_5.**
-#build-include: *-clang_6.**
-#build-exclude: ** ; Requires C++ modules support.
-build-exclude: *-msvc_15u0** ; Broken C++ modules support.
-build-include: *-msvc_15u**
+builds: all
+build-exclude: *-msvc_15.0** ; Broken C++ modules support.
+build-include: *-msvc_15.**
build-include: *-clang_5.**
build-include: *-clang_6.**
build-exclude: ** ; Requires C++ modules support.
requires: c++20
-depends: * build2 >= 0.8.0-
-depends: * bpkg >= 0.8.0-
+depends: * build2 >= 0.9.0
+depends: * bpkg >= 0.9.0
depends: libstd-modules