blob: a92f4a94aedc93a3f0b893e04692c2d97eae87c6 (
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
|
# file : butl/buildfile
# copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
lib{butl}: \
{hxx cxx}{ char-scanner } \
{hxx cxx}{ fdstream } \
{hxx ixx cxx}{ filesystem } \
{hxx }{ multi-index } \
{hxx }{ optional } \
{hxx cxx}{ pager } \
{hxx ixx txx cxx}{ path } \
{hxx }{ path-io } \
{hxx }{ path-map } \
{hxx txx }{ prefix-map } \
{hxx cxx}{ sha256 } \
{hxx ixx cxx}{ process } \
{hxx txx }{ string-table } \
{hxx cxx}{ timestamp } \
{hxx cxx}{ triplet } \
{hxx }{ utility } \
{hxx }{ version }
cxx.poptions =+ -I$src_root
lib{butl}: cxx.export.poptions = -I$src_root
# Install into the butl/ subdirectory of, say, /usr/include/.
#
install.include = $install.include/butl
|