From 19dc42649183b2e1cd37be1ca69145dafe1330a2 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 3 May 2019 22:19:55 +0300 Subject: Add implementation --- libcmark-gfm-extensions/build/bootstrap.build | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 libcmark-gfm-extensions/build/bootstrap.build (limited to 'libcmark-gfm-extensions/build/bootstrap.build') diff --git a/libcmark-gfm-extensions/build/bootstrap.build b/libcmark-gfm-extensions/build/bootstrap.build new file mode 100644 index 0000000..c7b7b43 --- /dev/null +++ b/libcmark-gfm-extensions/build/bootstrap.build @@ -0,0 +1,26 @@ +# file : build/bootstrap.build +# copyright : Copyright (c) 2016-2019 Code Synthesis Ltd +# license : FreeBSD License; see accompanying COPYING file + +project = libcmark-gfm-extensions + +using version +using config +using test +using install +using dist + +# Sync with the libcmark-gfm library ABI version (see libcmark-gfm's +# bootstrap.build for details). +# +if ($version.major == 0 && $version.minor == 29 && $version.patch == 0) +{ + upstream_version_major = 0 + upstream_version_minor = 29 + upstream_version_patch = 0 + upstream_version_gfm = 0 + + abi_version = "$upstream_version_major.$upstream_version_minor.$upstream_version_patch.$upstream_version_gfm" +} +else + fail 'increment the ABI version?' -- cgit v1.1