aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/bash/buildfile
blob: e1a9f53c0ccd898008e2a0f6346593d248679bed (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# file      : libbuild2/bash/buildfile
# copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
# license   : MIT; see accompanying LICENSE file

import int_libs = libbutl%lib{butl}

include ../
int_libs += ../lib{build2}

include ../in/
int_libs += ../in/lib{build2-in}

./: lib{build2-bash}: libul{build2-bash}: {hxx ixx txx cxx}{** -**.test...} \
  $int_libs

# Unit tests.
#
exe{*.test}:
{
  test = true
  install = false
}

for t: cxx{**.test...}
{
  d = $directory($t)
  n = $name($t)...

  ./: $d/exe{$n}: $t $d/{hxx ixx txx}{+$n} $d/testscript{+$n}
  $d/exe{$n}: libul{build2-bash}: bin.whole = false
}

# Build options.
#
obja{*}: cxx.poptions += -DLIBBUILD2_BASH_STATIC_BUILD
objs{*}: cxx.poptions += -DLIBBUILD2_BASH_SHARED_BUILD

# Export options.
#
lib{build2-bash}:
{
  cxx.export.poptions = "-I$out_root" "-I$src_root"
  cxx.export.libs = $int_libs
}

liba{build2-bash}: cxx.export.poptions += -DLIBBUILD2_BASH_STATIC
libs{build2-bash}: cxx.export.poptions += -DLIBBUILD2_BASH_SHARED

# For pre-releases use the complete version to make sure they cannot be used
# 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{build2-bash}: bin.lib.version = @"-$version.project_id"
else
  lib{build2-bash}: bin.lib.version = @"-$version.major.$version.minor"

# Install into the libbuild2/bash/ subdirectory of, say, /usr/include/
# recreating subdirectories.
#
{hxx ixx txx}{*}:
{
  install         = include/libbuild2/bash/
  install.subdirs = true
}