summaryrefslogtreecommitdiff
path: root/libcmark-gfm-extensions/build/bootstrap.build
blob: bb5b65f963d9292379fb35dabaf01c9a18cd9f3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# file      : build/bootstrap.build
# license   : BSD 2-Clause "Simplified" 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 = 3

  abi_version = "$upstream_version_major.$upstream_version_minor.$(upstream_version_patch).gfm.$upstream_version_gfm"
}
else
  fail 'increment the ABI version?'